Federal Contractor

GILBANE FEDERAL Federal Contract Obligations (Last Year)

GILBANE FEDERAL (CAGE 012A2, UEI WHB7C12ADS35) recorded 41.52 million in obligations across 58 awards in the last full year.

In the last full year, GILBANE FEDERAL received 41,517,719.84 in federal obligations across 58 award actions, for an average action value of 715,822.75. The work was concentrated in construction, led by the U.S. Coast Guard, with additional obligations from the Department of the Army, Department of the Air Force, Department of the Navy, and the Federal Law Enforcement Training Center.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the analysis window provided and may include negative obligations in NAICS breakdowns.

CAGE Code
012A2
UEI
WHB7C12ADS35
Total Obligated
41.52 million
41,517,719.84
Award Actions
58
Average Action Value
715,822.75

About GILBANE FEDERAL federal contract activity

GILBANE FEDERAL recorded $41.52 million in obligated contract value across 58 awards in the last full year, with an average award value of $715,822.75. The vendor is identified by CAGE code 012A2 and UEI WHB7C12ADS35. Overall activity is concentrated in a relatively small number of awards with substantial dollar volume.

Agency mix and customer concentration

The U.S. Coast Guard was the largest customer, accounting for $29.92 million across 12 awards, or the majority of total obligations. The next largest buyers were the Department of the Army at $6.17 million across 14 awards and the Department of the Air Force at $4.12 million across 22 awards, with smaller volumes from the Department of the Navy and the Federal Law Enforcement Training Center. This mix shows a strong concentration in maritime-related procurement, supplemented by recurring defense and training-agency demand.

Industry profile based on NAICS activity

The vendor’s obligations were dominated by NAICS 236220, Commercial and Institutional Building Construction, which represented $41.58 million across 55 awards. Smaller activity appeared in NAICS 237990, Other Heavy and Civil Engineering Construction, at $101.90 thousand on one award. NAICS 562910, Remediation Services, showed a net negative obligated amount of $163.22 thousand across two awards, indicating adjustments or deobligations within that category.

Annual contract trend over the analysis window

The annual trend shows all recorded activity in 2025, totaling $41.52 million across 58 awards. With only one year in the analysis window, the data supports a snapshot of current-year procurement concentration rather than a multi-year growth or decline pattern. The year’s obligations closely align with the vendor’s overall last-full-year totals.

How to interpret this page

This summary is based on FPDS obligation data for the last full year associated with vendor GILBANE FEDERAL, using the provided CAGE code 012A2 and UEI WHB7C12ADS35. Agency and NAICS rankings are ordered by total obligated value, and annual trend reflects obligations recorded within the analysis window. Negative obligated values are preserved as reported and may reflect deobligations or contract adjustments.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '012A2'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
7008 U.S. COAST GUARD 29,921,942.39 29.92 million 12
2100 DEPT OF THE ARMY 6,173,703.65 6.17 million 14
5700 DEPT OF THE AIR FORCE 4,120,016.83 4.12 million 22
1700 DEPT OF THE NAVY 1,163,318.80 1.16 million 6
7015 FEDERAL LAW ENFORCEMENT TRAINING CENTER 138,738.17 138.74 thousand 4

Insight

GILBANE FEDERAL’s last full-year obligations were concentrated in a small number of agencies, led by the U.S. Coast Guard at $29.92 million, or about 72% of the vendor’s $41.52 million total. The Department of the Army and Department of the Air Force accounted for the next largest shares at $6.17 million and $4.12 million, respectively, while the Department of the Navy and Federal Law Enforcement Training Center contributed relatively minor amounts. Award activity was broader than dollar concentration suggests, with 58 awards across five agencies and the highest award count at the Department of the Air Force (22), indicating smaller average awards outside the Coast Guard relationship.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '012A2'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 41,579,040.77 41.58 million 55
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 101,904.00 101.90 thousand 1
562910 REMEDIATION SERVICES -163,224.93 -163.22 thousand 2

Insight

GILBANE FEDERAL’s obligations in the last full year were heavily concentrated in NAICS 236220, Commercial and Institutional Building Construction, which accounts for essentially all reported activity at $41.58 million across 55 awards. The remaining NAICS categories were minimal by comparison: 237990 recorded $101.9 thousand across 1 award, while 562910 showed a net negative obligation of $163.2 thousand across 2 awards, indicating minor offsetting de-obligations. Overall, the vendor’s award profile is highly specialized and dominated by building construction work.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '012A2'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 41,517,719.84 41.52 million 58

Insight

During the last full year, GILBANE FEDERAL (CAGE 012A2) recorded $41.52 million in obligated awards across 58 actions, averaging about $715.8K per award. Because the window contains only one annual observation, no year-over-year trend can be assessed from this view. The data indicate a moderately concentrated award profile, with obligations distributed across a relatively limited number of awards rather than a single obligation event.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.