Federal Contractor

B.L. HARBERT INTERNATIONAL, L.L.C. Federal Contract Obligations (Last Year)

B.L. HARBERT INTERNATIONAL, L.L.C. (CAGE 1NRU1, UEI XXNJCWMAKNH8) obligated $902.67 million across 233 federal awards in the last full year.

In the last full year, B.L. HARBERT INTERNATIONAL, L.L.C. recorded 233 award actions totaling $902,667,150.29, for an average action value of $3,874,107.94. The company’s obligations were concentrated in Department of the Army work and in NAICS 236220, Commercial and Institutional Building Construction.

Generated at 03/21/2026

Analysis period: Last full year

Annual totals reflect the analysis window provided and may differ from other reporting periods or filters.

CAGE Code
1NRU1
UEI
XXNJCWMAKNH8
Total Obligated
902.67 million
902,667,150.29
Award Actions
233
Average Action Value
3,874,107.94

About B.L. HARBERT INTERNATIONAL, L.L.C. federal contract activity

B.L. HARBERT INTERNATIONAL, L.L.C. (CAGE 1NRU1, UEI XXNJCWMAKNH8) recorded 902.67 million in obligated federal spending across 233 awards in the last full year, for an average award value of 3.87 million. The profile is dominated by large construction-related obligations rather than a high volume of small transactions.

Agency mix and customer concentration

The DEPT OF THE ARMY was the primary customer, accounting for 497.77 million across 104 awards, or a little over half of total obligations. The STATE, DEPARTMENT OF THE, was the second-largest agency at 318.27 million across 71 awards, followed by the DEPT OF THE NAVY at 82.27 million across 31 awards; FBI and the PUBLIC BUILDINGS SERVICE contributed comparatively minor amounts.

Industry profile based on NAICS activity

Contracting activity was concentrated in NAICS 236220, COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION, which represented 840.24 million across 228 awards and nearly all reported obligation value. Smaller but notable work appeared under 237310, HIGHWAY, STREET, AND BRIDGE CONSTRUCTION, at 41.38 million from one award, and 541310, ARCHITECTURAL SERVICES, at 21.05 million across four awards.

Annual contract trend over the analysis window

The annual trend data shows all reported obligations concentrated in 2025, with 902.67 million across 233 awards. Because the analysis window is the last full year and only one year is present, this view establishes the annual baseline but does not indicate a multi-year growth or decline pattern.

How to interpret this page

This summary is based on FPDS-obligated dollars and award counts tied to the vendor’s CAGE code and UEI over the last full year. Agency and NAICS concentrations are ranked by total obligated value; averages are simple totals divided by award counts, and no attempt was made to infer contract scope beyond the recorded FPDS classifications.

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 = '1NRU1'
        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
2100 DEPT OF THE ARMY 497,765,072.34 497.77 million 104
1900 STATE, DEPARTMENT OF 318,273,071.48 318.27 million 71
1700 DEPT OF THE NAVY 82,266,796.86 82.27 million 31
1549 FEDERAL BUREAU OF INVESTIGATION 3,698,020.00 3.70 million 15
4740 PUBLIC BUILDINGS SERVICE 664,189.61 664.19 thousand 12

Insight

B.L. HARBERT INTERNATIONAL, L.L.C. obligated $902.67 million across 233 awards in the last full year, with spending concentrated in two agencies. The DEPT OF THE ARMY accounted for $497.77 million across 104 awards and the DEPARTMENT OF STATE accounted for $318.27 million across 71 awards, together representing the large majority of obligations. DEPT OF THE NAVY was a distant third at $82.27 million across 31 awards, while the FBI and PUBLIC BUILDINGS SERVICE contributed comparatively minor amounts, indicating a highly concentrated agency footprint.

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 = '1NRU1'
        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 840,238,424.29 840.24 million 228
237310 HIGHWAY, STREET, AND BRIDGE CONSTRUCTION 41,381,393.00 41.38 million 1
541310 ARCHITECTURAL SERVICES 21,047,333.00 21.05 million 4

Insight

B.L. HARBERT INTERNATIONAL, L.L.C. shows a highly concentrated NAICS profile in the last full year: NAICS 236220, Commercial and Institutional Building Construction, accounted for 840.24 million of 902.67 million obligated, or roughly 93% of total obligations, across 228 of 233 awards. The remaining obligations were distributed across a small number of awards in NAICS 237310, Highway, Street, and Bridge Construction, at 41.38 million in 1 award, and NAICS 541310, Architectural Services, at 21.05 million in 4 awards. This indicates the vendor’s activity is overwhelmingly centered on commercial/institutional building construction, with limited diversification into other NAICS codes.

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 = '1NRU1'
        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 902,667,150.29 902.67 million 233

Insight

During the last full year, B.L. HARBERT INTERNATIONAL, L.L.C. (CAGE 1NRU1) received $902.67 million in obligated funding across 233 awards, for an average award value of about $3.87 million. Because only one annual data point is provided in the 1-year window, no year-over-year trend can be assessed. The available data indicate a high volume of awards relative to the total obligation amount, suggesting a distributed award profile rather than reliance on a small number of large awards.

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.