Federal Contractor

HENSEL PHELPS CONSTRUCTION CO Federal Contract Obligations (Last 10 Years)

Federal procurement profile for HENSEL PHELPS CONSTRUCTION CO (CAGE 1QZ19, UEI GPYDJ1NKULS8) covering obligations, agencies, and award trends over the last 10 years.

HENSEL PHELPS CONSTRUCTION CO recorded $3.49 billion in obligated federal awards across 982 actions in the last 10 years, with an average action value of $3.56 million. Activity is concentrated in NAICS 236220, Commercial and Institutional Building Construction, and is led by the National Institutes of Health and the Department of the Army.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect FPDS-readable obligations for the last 10 years and may differ from totals in individual contract records due to rounding or data updates.

CAGE Code
1QZ19
UEI
GPYDJ1NKULS8
Total Obligated
3.49 billion
3,494,954,445.69
Award Actions
982
Average Action Value
3,559,016.74

About HENSEL PHELPS CONSTRUCTION CO federal contract activity

HENSEL PHELPS CONSTRUCTION CO (CAGE 1QZ19, UEI GPYDJ1NKULS8) recorded 982 FPDS awards totaling 3.49 billion over the last 10 years, with an average award value of 3.56 million. The obligation profile indicates a large-scale federal construction vendor with activity concentrated in institutional and mission-critical facilities.

Agency mix and customer concentration

Obligations are led by the National Institutes of Health at 1.35 billion across 146 awards and the Department of the Army at 1.17 billion across 424 awards, together accounting for most of the vendor's federal volume. Additional material activity appears with the Federal Bureau of Investigation, Public Buildings Service, and National Institute of Standards and Technology, indicating a customer base spanning healthcare, defense, law enforcement, and federal real property needs.

Industry profile based on NAICS activity

All reported obligations fall under NAICS 236220, Commercial and Institutional Building Construction, with 3.49 billion across 982 awards. This indicates a highly concentrated portfolio in commercial and institutional construction rather than a diversified set of contracting lines.

Annual contract trend over the analysis window

Annual obligations were strongest in 2022 at 803.42 million, followed by 2021 at 568.85 million, then declined to 250.86 million in 2023 and 311.92 million in 2024. Through 2025, reported obligations stand at 174.95 million across 55 awards, suggesting lower year-to-date volume relative to the peak years in the analysis window.

How to interpret this page

This summary is based on FPDS award data attributed to CAGE 1QZ19 and UEI GPYDJ1NKULS8 over the last 10 years. Values reflect obligated dollars and award counts as provided in the source dataset, with agency, NAICS, and annual views aggregated from reported FPDS records.

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 = '1QZ19'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
7529 NATIONAL INSTITUTES OF HEALTH 1,348,981,935.27 1.35 billion 146
2100 DEPT OF THE ARMY 1,167,268,229.82 1.17 billion 424
1549 FEDERAL BUREAU OF INVESTIGATION 334,023,398.00 334.02 million 91
4740 PUBLIC BUILDINGS SERVICE 280,517,680.00 280.52 million 100
1341 NATIONAL INSTITUTE OF STANDARDS AND TECHNOLOGY 272,539,385.00 272.54 million 192
1700 DEPT OF THE NAVY 54,546,622.60 54.55 million 15
3300 SMITHSONIAN INSTITUTION 37,077,195.00 37.08 million 14

Insight

Over the last 10 years, HENSEL PHELPS CONSTRUCTION CO’s obligations are concentrated across a small set of civilian and defense agencies, with the National Institutes of Health ($1.35 billion) and the Department of the Army ($1.17 billion) accounting for the largest shares of the $3.49 billion total. These two agencies alone represent more than 72% of obligated dollars, indicating a highly concentrated award profile. The next tier—FBI, Public Buildings Service, and NIST—adds another $887 million, while Navy and Smithsonian obligations are comparatively limited, suggesting broader but substantially smaller follow-on activity outside the top two agencies.

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 = '1QZ19'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 3,494,954,445.69 3.49 billion 982

Insight

HENSEL PHELPS CONSTRUCTION CO’s obligations over the last 10 years are fully concentrated in NAICS 236220, Commercial and Institutional Building Construction, with $3.49 billion across 982 awards. This indicates a highly focused award distribution and a consistent contracting profile within a single construction industry code. The average award value across the period is approximately $3.56 million, suggesting a mix of award sizes within that NAICS category.

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 = '1QZ19'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 174,946,896.67 174.95 million 55
2024 311,917,839.99 311.92 million 80
2023 250,860,147.56 250.86 million 96
2022 803,424,161.81 803.42 million 125
2021 568,846,437.00 568.85 million 137
2020 519,956,921.43 519.96 million 132
2019 503,667,134.23 503.67 million 117
2018 122,354,991.27 122.35 million 113
2017 207,558,741.73 207.56 million 125
2016 31,421,174.00 31.42 million 2

Insight

Over the last 10 years, HENSEL PHELPS CONSTRUCTION CO (CAGE 1QZ19) received $3.49 billion across 982 awards, averaging $3.56 million per award. Obligations are concentrated in the 2019–2025 period, with the highest annual total in 2022 at $803.42 million and elevated levels continuing through 2024, before easing to $174.95 million in 2025. Earlier years were materially lower, including $31.42 million in 2016 and $122.35 million in 2018, indicating a marked upward shift in funding volume over time.

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