Federal Contractor

381 CONSTRUCTORS Federal Contract Obligations (Last 5 Years)

381 CONSTRUCTORS (CAGE 8QYU2, UEI P4LGE35HG4B5) shows 1.77 billion in federal obligations over the last five years, all from DEPT OF THE NAVY contracts in NAICS 237990.

Across 72 award actions, 381 CONSTRUCTORS recorded 1.77 billion in obligated spending with an average action value of 24.65 million. Annual obligations were highest in 2024 and 2023, with continued activity in 2025.

Generated at 03/21/2026

Analysis period: Last 5 years

This summary reflects FPDS-observed obligations in the last five years and may differ from vendor-reported totals or awards outside the analysis window.

CAGE Code
8QYU2
UEI
P4LGE35HG4B5
Total Obligated
1.77 billion
1,774,598,061.87
Award Actions
72
Average Action Value
24,647,195.30

About 381 CONSTRUCTORS federal contract activity

381 CONSTRUCTORS (CAGE 8QYU2, UEI P4LGE35HG4B5) recorded $1.77 billion in obligated federal awards across 72 awards over the last 5 years, for an average award value of $24.65 million. The company’s obligation profile indicates a high-dollar, moderate-frequency award pattern centered on large civil and heavy construction work.

Agency mix and customer concentration

The award history is fully concentrated in the DEPT OF THE NAVY, which accounts for the entire $1.77 billion and all 72 awards in the analysis window. This level of single-agency concentration suggests a procurement relationship tied closely to Navy infrastructure or construction requirements.

Industry profile based on NAICS activity

All observed obligations fall under NAICS 237990, OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION, with $1.77 billion across 72 awards. The mix indicates a highly specialized contracting profile with no diversification across other NAICS categories in the period reviewed.

Annual contract trend over the analysis window

Annual obligations were strongest in 2024 at $444.97 million and remained elevated in 2023 at $442.92 million and 2022 at $421.82 million. Activity then declined to $394.88 million in 2025, while 2021 shows a materially lower base of $70.00 million on a single award, indicating a sharp ramp-up after 2021 followed by a modest taper.

How to interpret this page

This summary is based on FPDS award records associated with CAGE 8QYU2 and UEI P4LGE35HG4B5 over the last 5 years. Agency, NAICS, and annual trend totals reflect obligated dollars and award counts as provided in the source data, with no additional inference beyond the reported aggregates.

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 = '8QYU2'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
1700 DEPT OF THE NAVY 1,774,598,061.87 1.77 billion 72

Insight

Over the last 5 years, 381 CONSTRUCTORS’ obligations are fully concentrated in the DEPT OF THE NAVY, which accounts for the full $1.77 billion and all 72 awards. This indicates a single-agency dependency in the vendor’s federal portfolio, with no obligations shown for other agencies in the provided period. The average award value across this activity is approximately $24.6 million, suggesting a portfolio characterized by relatively high-value awards within one customer base.

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 = '8QYU2'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 1,774,598,061.87 1.77 billion 72

Insight

Over the last 5 years, 381 CONSTRUCTORS (CAGE 8QYU2) shows complete NAICS concentration in 237990, Other Heavy and Civil Engineering Construction, with all 72 awards and the full $1.77 billion obligated under this code. This indicates a fully specialized contract portfolio with no observed NAICS diversification in the provided period. The average award value of about $24.6 million suggests sustained activity in large-dollar civil construction obligations.

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 = '8QYU2'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 394,879,585.00 394.88 million 26
2024 444,972,362.05 444.97 million 19
2023 442,922,850.96 442.92 million 13
2022 421,823,263.86 421.82 million 13
2021 70,000,000.00 70.00 million 1

Insight

Over the last 5 years, 381 CONSTRUCTORS obligate 1.77 billion across 72 awards, with an average award value of 24.65 million, indicating a relatively high-dollar, moderately concentrated portfolio. Obligations are heavily concentrated in 2022 through 2025, which account for nearly all activity, while 2021 reflects only one award and 70.00 million in obligations. Annual obligations remained relatively stable from 2022 to 2024 at roughly 421.82 million to 444.97 million, then declined to 394.88 million in 2025 despite the highest annual award count at 26.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.