Federal Contractor

HENSEL PHELPS CONSTRUCTION CO Federal Contract Obligations (Last Year)

Federal procurement profile for HENSEL PHELPS CONSTRUCTION CO (CAGE 1QZ19, UEI GPYDJ1NKULS8) covering the last full year of award activity.

HENSEL PHELPS CONSTRUCTION CO recorded $174,946,896.67 in obligated federal awards across 55 actions in the last full year, for an average action value of $3,180,852.66. Most obligations were placed with the National Institutes of Health, with smaller totals from the Department of the Navy and the Department of the Army, all under NAICS 236220, Commercial and Institutional Building Construction.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the last full year and are based on readable obligation totals, award counts, and agency and NAICS rollups provided in the source data.

CAGE Code
1QZ19
UEI
GPYDJ1NKULS8
Total Obligated
174.95 million
174,946,896.67
Award Actions
55
Average Action Value
3,180,852.66

About HENSEL PHELPS CONSTRUCTION CO federal contract activity

HENSEL PHELPS CONSTRUCTION CO (CAGE 1QZ19, UEI GPYDJ1NKULS8) recorded 55 FPDS awards in the last full year, with total obligations of $174.95 million and an average award value of $3.18 million. The profile is highly concentrated in a single industry classification, indicating a focused federal contracting footprint rather than a diversified award mix.

Agency mix and customer concentration

Award activity was dominated by the NATIONAL INSTITUTES OF HEALTH, which accounted for $164.36 million across 29 awards, or the clear majority of total obligations. Smaller but material activity came from the DEPT OF THE NAVY at $7.29 million across 6 awards and the DEPT OF THE ARMY at $3.30 million across 20 awards, showing a secondary presence in defense-related contracting.

Industry profile based on NAICS activity

All recorded obligations in the analysis window were mapped to NAICS 236220, COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION. That concentration indicates the vendor’s federal work in this period was entirely aligned to commercial and institutional construction rather than multiple NAICS categories.

Annual contract trend over the analysis window

The annual trend for 2025 shows $174.95 million in obligations across 55 awards, matching the full analysis window totals. With only one year represented, the available trend data reflects the vendor’s aggregate activity level rather than a multi-year change pattern.

How to interpret this page

This page summarizes FPDS award records for the last full year using the vendor identifiers provided for HENSEL PHELPS CONSTRUCTION CO. Obligations are shown as reported in FPDS and grouped by agency, NAICS code, and year; totals, counts, and averages are calculated from the underlying award set for the specified period.

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 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
7529 NATIONAL INSTITUTES OF HEALTH 164,364,775.25 164.36 million 29
1700 DEPT OF THE NAVY 7,285,746.00 7.29 million 6
2100 DEPT OF THE ARMY 3,296,375.42 3.30 million 20

Insight

Over the last full year, HENSEL PHELPS CONSTRUCTION CO’s obligations were highly concentrated in the NATIONAL INSTITUTES OF HEALTH, which accounted for 164.36 million of 174.95 million total obligated, across 29 of 55 awards. The DEPT OF THE NAVY was a distant second at 7.29 million over 6 awards, followed by the DEPT OF THE ARMY at 3.30 million over 20 awards. This distribution indicates a strong reliance on NIH-funded work, with relatively limited spend spread across other 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 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 174,946,896.67 174.95 million 55

Insight

Over the last full year, HENSEL PHELPS CONSTRUCTION CO (CAGE 1QZ19) had all reported obligations concentrated in a single NAICS code, 236220, Commercial and Institutional Building Construction. This NAICS accounted for the full $174.95 million in obligations across 55 awards, indicating a highly focused procurement profile with no diversification across other NAICS categories in this window. The average award value was $3.18 million, suggesting a moderate volume of relatively uniform construction awards.

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 1 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

Insight

During the last full year, HENSEL PHELPS CONSTRUCTION CO (CAGE 1QZ19) received $174.95 million in obligated awards across 55 actions, for an average award value of about $3.18 million. Because the window contains a single annual data point, year-over-year trend direction cannot be assessed. The observed activity indicates moderate award dispersion across multiple actions, with obligations not concentrated in a small number of awards based on the available summary metrics.

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.