Federal Contractor

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

HENSEL PHELPS CONSTRUCTION CO has received 493 federal award actions worth $2.11 billion over the last 5 years, led by civilian and defense construction work.

HENSEL PHELPS CONSTRUCTION CO, CAGE 1QZ19, UEI GPYDJ1NKULS8, shows 493 award actions totaling $2,109,995,483.03 in the last 5 years, with an average action value of $4,279,909.70. The largest share of obligated funding came from the National Institutes of Health and the Department of the Army, and all recorded obligations fall under NAICS 236220, Commercial and Institutional Building Construction.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the selected 5-year FPDS analysis window and may differ from other summaries due to timing, modifications, and record updates.

CAGE Code
1QZ19
UEI
GPYDJ1NKULS8
Total Obligated
2.11 billion
2,109,995,483.03
Award Actions
493
Average Action Value
4,279,909.70

About HENSEL PHELPS CONSTRUCTION CO federal contract activity

HENSEL PHELPS CONSTRUCTION CO (CAGE 1QZ19, UEI GPYDJ1NKULS8) recorded 493 FPDS awards totaling $2.11 billion over the last 5 years, with an average award value of $4.28 million. The profile is strongly concentrated in federal construction activity, indicating a sustained role as a large-scale prime contractor in building and facility work.

Agency mix and customer concentration

Obligations were heavily concentrated at the National Institutes of Health, which accounted for $1.32 billion across 141 awards, or roughly 62% of total obligated value. The Department of the Army was the second-largest customer at $581.66 million across 160 awards, while NIST, the FBI, and the Department of the Navy added smaller but meaningful follow-on volumes. This mix suggests a customer base centered on civilian research/institutional infrastructure and defense-related facilities.

Industry profile based on NAICS activity

All reported obligations fall under NAICS 236220, Commercial and Institutional Building Construction, with 493 awards totaling $2.11 billion. This indicates a highly concentrated contract profile with little visible diversification across NAICS categories in the analyzed period.

Annual contract trend over the analysis window

Annual obligations peaked in 2022 at $803.42 million across 125 awards, then declined to $250.86 million in 2023 before rebounding to $311.92 million in 2024. Through 2025, obligations reached $174.95 million across 55 awards, while award counts have generally trended downward since 2021, when the vendor recorded 137 awards and $568.85 million in obligations. Overall, the series shows a high 2022 spike followed by lower, more variable annual activity.

How to interpret this page

This summary is based on FPDS award records for the last 5 years and uses obligated dollars and award counts tied to the listed CAGE code and UEI. Agency, NAICS, and annual views reflect only the provided FPDS aggregation and do not infer contract scope, performance outcomes, or unreported activity.

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 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
7529 NATIONAL INSTITUTES OF HEALTH 1,317,515,364.84 1.32 billion 141
2100 DEPT OF THE ARMY 581,658,029.59 581.66 million 160
1341 NATIONAL INSTITUTE OF STANDARDS AND TECHNOLOGY 77,959,746.00 77.96 million 103
1549 FEDERAL BUREAU OF INVESTIGATION 62,153,295.00 62.15 million 51
1700 DEPT OF THE NAVY 51,066,190.60 51.07 million 8
4740 PUBLIC BUILDINGS SERVICE 19,642,857.00 19.64 million 30

Insight

Over the last 5 years, HENSEL PHELPS CONSTRUCTION CO’s obligations are highly concentrated in the NATIONAL INSTITUTES OF HEALTH and DEPT OF THE ARMY, which together account for about 1.90 billion of the 2.11 billion obligated. NIH is the largest customer by dollars at 1.32 billion across 141 awards, while the Army follows at 581.66 million across 160 awards, indicating substantial recurring activity across two major agencies. The remaining listed agencies are materially smaller by obligation value, with no other agency exceeding 80 million, suggesting a steep drop-off after the top two buyers.

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 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
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 2,109,995,483.03 2.11 billion 493

Insight

Over the last 5 years, HENSEL PHELPS CONSTRUCTION CO’s obligations are fully concentrated in NAICS 236220, Commercial and Institutional Building Construction. The vendor received 493 awards totaling $2.11 billion, indicating a highly concentrated award profile with all recorded obligated dollars in a single NAICS code. The average award value of about $4.28 million suggests a mix of moderate-sized awards within this construction 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 5 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

Insight

HENSEL PHELPS CONSTRUCTION CO (CAGE 1QZ19) obligated $2.11 billion across 493 awards over the last 5 years, with an average award value of about $4.28 million. Obligations were heavily concentrated in 2021-2022, which together account for $1.37 billion, or roughly 65% of the five-year total. Annual activity declined after the 2022 peak of $803.42 million and 125 awards, falling to $311.92 million in 2024 and $174.95 million in 2025, indicating a downward trend in both obligation volume and award count.

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.