Federal Contractor

HENSEL PHELPS CONSTRUCTION CO Federal Contract Obligations (Last Year)

Federal procurement profile for HENSEL PHELPS CONSTRUCTION CO (CAGE 6TYN2, UEI LA5LXK1PHJB5) covering last full year award activity.

In the last full year, HENSEL PHELPS CONSTRUCTION CO received $88.63 million across 42 federal award actions, for an average action value of $2.11 million. Most of that obligated amount came from the Department of the Navy, with smaller totals from the Department of the Army and the U.S. Geological Survey.

Generated at 03/21/2026

Analysis period: Last full year

This page summarizes FPDS-based obligation and award counts for the analysis window using the provided vendor identifiers and agency and NAICS breakdowns.

CAGE Code
6TYN2
UEI
LA5LXK1PHJB5
Total Obligated
88.63 million
88,634,195.97
Award Actions
42
Average Action Value
2,110,337.99

About HENSEL PHELPS CONSTRUCTION CO federal contract activity

HENSEL PHELPS CONSTRUCTION CO, identified by CAGE 6TYN2 and UEI LA5LXK1PHJB5, received 42 FPDS-recorded awards in the last full year totaling $88.63 million. The average award value was $2.11 million, indicating a portfolio composed of multiple moderate-sized obligations rather than a single dominant transaction.

Agency mix and customer concentration

Obligations were highly concentrated in the DEPT OF THE NAVY, which accounted for $87.29 million across 31 awards and represented the clear majority of total funding. The DEPT OF THE ARMY contributed $965.84 thousand across 9 awards, while the US GEOLOGICAL SURVEY added $377.21 thousand across 2 awards, showing limited but present activity outside the Navy.

Industry profile based on NAICS activity

All recorded obligations fell under NAICS 236220, Commercial and Institutional Building Construction, with $88.63 million across 42 awards. This indicates that the vendor’s FPDS activity in the analysis window was fully concentrated in commercial and institutional building construction work.

Annual contract trend over the analysis window

The annual trend shows $88.63 million obligated in 2025 across 42 awards, which matches the last full-year totals provided. With only one year in the analysis window, the available data supports a snapshot of activity rather than a multi-year directional trend.

How to interpret this page

This summary is based on FPDS award records associated with CAGE 6TYN2 and UEI LA5LXK1PHJB5 for the last full year. Obligations, award counts, and categorical breakdowns are reported as provided in the source data and rounded only in the readable values shown here.

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 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
1700 DEPT OF THE NAVY 87,291,146.51 87.29 million 31
2100 DEPT OF THE ARMY 965,840.00 965.84 thousand 9
1434 US GEOLOGICAL SURVEY 377,209.46 377.21 thousand 2

Insight

HENSEL PHELPS CONSTRUCTION CO’s obligations over the last full year were highly concentrated in the DEPT OF THE NAVY, which accounted for $87.29 million of $88.63 million total obligated, or about 98.5%, across 31 of 42 awards. The DEPT OF THE ARMY contributed $965.84 thousand across 9 awards, and the US GEOLOGICAL SURVEY added $377.21 thousand across 2 awards, indicating a narrow federal customer base. The average award value of $2.11 million reflects a mix of larger Navy awards and smaller awards across the remaining 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 = '6TYN2'
        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 88,634,195.97 88.63 million 42

Insight

Over the last full year, HENSEL PHELPS CONSTRUCTION CO’s obligations under CAGE 6TYN2 were fully concentrated in NAICS 236220, Commercial and Institutional Building Construction. The vendor received 42 awards in this NAICS, totaling $88.63 million, which indicates a highly focused procurement profile with no visible diversification across other NAICS codes in the provided period. The average award value of about $2.11 million suggests the workload was distributed across multiple awards rather than a small number of large 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 = '6TYN2'
        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 88,634,195.97 88.63 million 42

Insight

During the last full year, HENSEL PHELPS CONSTRUCTION CO (CAGE 6TYN2) received $88.63 million across 42 awards, for an average award value of about $2.11 million. This indicates a moderate concentration of obligation across a relatively large number of awards rather than reliance on a single action. With only one year provided, no year-over-year trend can be assessed from this window.

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.