FPDS data shows BECHTEL NATIONAL, INC’s federal obligations are concentrated in the Department of Energy and the Department of the Army. The vendor’s largest NAICS activity is industrial nonbuilding structure construction, with additional obligations tied to hazardous waste treatment and disposal.
Federal Contractor
BECHTEL NATIONAL, INC Federal Contract Obligations (Last 10 Years)
BECHTEL NATIONAL, INC (CAGE 1S307, UEI HGF7H89MA3D9) received 374 federal award actions totaling $8.71 billion over the last 10 years.
Figures reflect the last 10 years of FPDS award actions and may include obligations recorded across multiple contract actions.
About BECHTEL NATIONAL, INC federal contract activity
BECHTEL NATIONAL, INC recorded $8.71 billion in obligations across 374 awards in the last 10 years, with an average award value of $23.30 million. The vendor’s federal activity is highly concentrated in a small number of large-value actions, indicating sustained participation in major program work rather than broad transactional volume.
Agency mix and customer concentration
The Department of Energy accounts for the majority of obligated value at $6.17 billion across 222 awards, or about 71 percent of total obligations. The Department of the Army is the other primary customer, with $2.54 billion across 152 awards, showing a two-agency concentration profile with limited activity outside these buyers.
Industry profile based on NAICS activity
Award activity is dominated by NAICS 234930, Industrial Nonbuilding Structure Construction, which aligns with $6.17 billion and 222 awards. NAICS 562211, Hazardous Waste Treatment and Disposal, contributes $2.54 billion across 148 awards, while NAICS 541710 appears only marginally with $3.45 thousand across two awards, indicating the portfolio is overwhelmingly centered on construction and waste-related work.
Annual contract trend over the analysis window
Obligations remained elevated in the most recent years shown, rising to $979.19 million in 2025 after $735.98 million in 2024 and $1.15 billion in 2023. The series also includes $500.04 million in 2022 and $1.36 billion in 2021, reflecting year-to-year variation but consistently large annual procurement volume.
How to interpret this page
This summary is based on FPDS award records associated with CAGE 1S307 and UEI HGF7H89MA3D9 for the last 10 years. Obligated dollars, award counts, agency totals, NAICS totals, and annual trend values are taken directly from the provided analysis window and are not adjusted for inflation, scope normalization, or contract modification attribution beyond the source data.
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 = '1S307'
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 |
|---|---|---|---|---|
| 8900 | ENERGY, DEPARTMENT OF | 6,173,776,404.40 | 6.17 billion | 222 |
| 2100 | DEPT OF THE ARMY | 2,539,692,111.02 | 2.54 billion | 152 |
Insight
Over the last 10 years, BECHTEL NATIONAL, INC has $8.71 billion in obligations across 374 awards, with an average award value of $23.30 million. Obligations are concentrated in two agencies: the Department of Energy accounts for $6.17 billion across 222 awards, or about 71% of total obligated value, while the Department of the Army accounts for $2.54 billion across 152 awards. This distribution indicates a strong funding concentration in DOE, with Army awards providing a smaller but still material share of the vendor’s federal portfolio.
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 = '1S307'
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 |
|---|---|---|---|---|
| 234930 | INDUSTRIAL NONBUILDING STRUCTURE CONSTRUCTION | 6,173,776,404.40 | 6.17 billion | 222 |
| 562211 | HAZARDOUS WASTE TREATMENT AND DISPOSAL | 2,539,674,795.42 | 2.54 billion | 148 |
| 541710 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES | 3,452.18 | 3.45 thousand | 2 |
Insight
Over the last 10 years, BECHTEL NATIONAL, INC has received $8.71 billion across 374 awards, with obligations highly concentrated in two NAICS codes. Industrial Nonbuilding Structure Construction (234930) accounts for $6.17 billion across 222 awards, while Hazardous Waste Treatment and Disposal (562211) adds $2.54 billion across 148 awards; together they represent essentially all obligated dollars in the period. Research and Development in the Physical, Engineering, and Life Sciences (541710) is immaterial by comparison at $3.45 thousand across 2 awards, indicating a narrow and stable contract profile centered on construction and hazardous waste activities.
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 = '1S307'
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 | 979,192,611.19 | 979.19 million | 29 |
| 2024 | 735,977,598.57 | 735.98 million | 16 |
| 2023 | 1,154,501,244.64 | 1.15 billion | 37 |
| 2022 | 500,040,383.87 | 500.04 million | 38 |
| 2021 | 1,355,305,730.38 | 1.36 billion | 50 |
| 2020 | 1,089,890,571.01 | 1.09 billion | 53 |
| 2019 | 1,064,929,997.07 | 1.06 billion | 45 |
| 2018 | 1,135,375,920.60 | 1.14 billion | 56 |
| 2017 | 699,594,986.82 | 699.59 million | 45 |
| 2016 | -1,340,528.73 | -1.34 million | 5 |
Insight
Over the last 10 years, BECHTEL NATIONAL, INC. (CAGE 1S307) has received 8.71 billion in obligations across 374 awards, averaging 23.30 million per award. Obligations are concentrated in recent years and in several high-volume periods, with annual totals exceeding 1.0 billion in 2018, 2019, 2020, 2021, 2023, and 2025; 2021 is the peak year at 1.36 billion, followed by 2023 at 1.15 billion. Award volume is also strongest in the 2018–2021 period, ranging from 45 to 56 awards annually, while 2024 shows a lower count and 2022 reflects a notable decline in obligations. The 2016 negative obligation indicates an adjustment year and is materially below the rest of the period.
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.