Federal Contractor

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

HENSEL PHELPS CONSTRUCTION CO (CAGE 6TYN2, UEI LA5LXK1PHJB5) received 347 federal award actions totaling $1.18 billion over the last five years.

Its obligations were led by the Department of the Navy at $844.14 million across 171 actions, followed by the Department of the Army at $224.82 million across 168 actions. The firm’s federal work in this period was concentrated in NAICS 236220, Commercial and Institutional Building Construction, and annual obligations peaked in 2024 at $328.51 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Amounts and counts reflect the last 5 years of readable FPDS obligations and may differ from totals shown on other government systems.

CAGE Code
6TYN2
UEI
LA5LXK1PHJB5
Total Obligated
1.18 billion
1,184,757,389.49
Award Actions
347
Average Action Value
3,414,286.42

About HENSEL PHELPS CONSTRUCTION CO federal contract activity

HENSEL PHELPS CONSTRUCTION CO (CAGE 6TYN2, UEI LA5LXK1PHJB5) recorded $1.18 billion in FPDS obligations across 347 awards over the last 5 years, with an average award value of $3.41 million. The profile reflects a large, high-volume federal construction vendor with obligations concentrated in a single primary contracting category.

Agency mix and customer concentration

Work was concentrated in the Department of the Navy, which accounted for $844.14 million across 171 awards, or the majority of identified obligations. The Department of the Army was the second-largest customer at $224.82 million across 168 awards, while the US Geological Survey contributed a smaller but material $115.81 million across 8 awards. This mix indicates strong exposure to defense-related agencies, with limited participation outside that core base.

Industry profile based on NAICS activity

All reported obligations fall under NAICS 236220, Commercial and Institutional Building Construction, totaling $1.18 billion across 347 awards. The portfolio is therefore highly concentrated by industry code, indicating a specialized federal construction profile rather than a diversified contracting mix.

Annual contract trend over the analysis window

Annual obligations peaked in 2024 at $328.51 million, following $312.08 million in 2022 and $274.84 million in 2021. Activity then declined to $180.68 million in 2023 and $88.63 million in 2025 year-to-date, while award counts also fell from 99 in 2022 to 42 in 2025. The pattern suggests elevated funding in the middle of the period, followed by a notable slowdown in more recent obligations.

How to interpret this page

This summary is based on FPDS-observed obligations associated with HENSEL PHELPS CONSTRUCTION CO over the last 5 years, using the provided CAGE code and UEI as identifiers. Agency, NAICS, and annual trend sections reflect only the supplied aggregated metrics and do not infer contract type, scope, or performance outcomes beyond those figures.

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 = '6TYN2'
        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 844,135,345.03 844.14 million 171
2100 DEPT OF THE ARMY 224,815,244.00 224.82 million 168
1434 US GEOLOGICAL SURVEY 115,806,800.46 115.81 million 8

Insight

Over the last 5 years, HENSEL PHELPS CONSTRUCTION CO (CAGE 6TYN2) received $1.18 billion across 347 awards, with an average award value of $3.41 million. Obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $844.14 million across 171 awards, or roughly 71% of total obligated dollars. The DEPT OF THE ARMY is the second-largest customer at $224.82 million across 168 awards, while the US GEOLOGICAL SURVEY contributed $115.81 million through only 8 awards, indicating a smaller number of higher-value awards outside the military departments.

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 = '6TYN2'
        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 1,184,757,389.49 1.18 billion 347

Insight

Over the last 5 years, HENSEL PHELPS CONSTRUCTION CO’s obligation profile is fully concentrated in NAICS 236220, Commercial and Institutional Building Construction. The firm received 347 awards under this code, accounting for the full $1.18 billion obligated in the period, indicating a single-sector contracting pattern with no observed NAICS diversification in the provided data. The average award value of about $3.41 million suggests a mix of moderate-sized obligations 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 = '6TYN2'
        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 88,634,195.97 88.63 million 42
2024 328,514,616.20 328.51 million 52
2023 180,683,778.00 180.68 million 59
2022 312,081,629.44 312.08 million 99
2021 274,843,169.88 274.84 million 95

Insight

HENSEL PHELPS CONSTRUCTION CO obligated $1.18 billion across 347 awards over the last 5 years, with an average award value of $3.41 million. Obligations were concentrated in 2022 through 2024, which together accounted for the majority of five-year spending, peaking in 2024 at $328.51 million across 52 awards. Activity declined in 2025 to $88.63 million and 42 awards, indicating a significant recent contraction in both value and award volume after elevated prior-year levels.

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.