Award Number

Award Number 8900 / 89303523FEM400032 Federal Contract Action Summary (Last 10 Years)

Federal procurement analysis page for award number 89303523FEM400032 under Agency ID 8900, covering the last 10 years of obligation and action activity.

This page summarizes award number 89303523FEM400032 for Agency ID 8900 over the last 10 years. It shows 105 award actions with total obligated amounts of 2.13 billion, averaging 20,322,412.7 per action.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and the exact obligated value of 2,133,853,333.99.

Agency ID
8900
PIID
89303523FEM400032
Type
Award
Total Obligated
2.13 billion
2,133,853,333.99
Actions
105
Average Action Value
20,322,412.70

Overview

Award number 89303523FEM400032 is associated with Agency ID 8900 and shows 105 recorded actions within the last 10 years. The total obligated amount is 2,133,853,333.99, which rounds to 2.13 billion, with an average action value of 20,322,412.7. These figures provide a concise view of the award’s activity and obligation scale over the analysis window.

How to use this page

Use this page to review the award-level obligation history for 89303523FEM400032 and compare activity across the full 10-year window. The action count and average action value help frame the award’s transaction pattern alongside the total obligated amount. This record supports basic procurement review, reporting, and trend analysis for the listed award.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = '89303523FEM400032'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
8900 ENERGY, DEPARTMENT OF 2,133,853,333.99 2.13 billion 105

Insight

For this award, obligations are fully concentrated within the Department of Energy (agency ID 8900), which accounts for $2.13 billion across 105 awards in the 10-year window. This indicates a highly concentrated award profile with no evidence of distribution across additional top agencies in the provided rows. The volume of awards alongside the large obligated amount suggests sustained procurement activity within a single agency channel.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = '89303523FEM400032'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
UNITED CLEANUP OAK RIDGE LLC 8QJ69 2,133,853,333.99 2.13 billion 105

Insight

Obligations for PIID 89303523FEM400032 are entirely concentrated with a single vendor, UNITED CLEANUP OAK RIDGE LLC (CAGE 8QJ69), over the 10-year window. This vendor accounts for $2.13 billion across 105 awards, indicating a highly concentrated award history rather than a distributed vendor base.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = '89303523FEM400032'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
562910 REMEDIATION SERVICES 2,133,853,333.99 2.13 billion 105

Insight

Over the 10-year window, obligations for this award are fully concentrated in NAICS 562910, Remediation Services, with $2.13 billion across 105 awards. This indicates a highly focused procurement profile with no diversification across other NAICS categories in the provided data. The volume of awards suggests recurring use of this service line over time rather than a single isolated obligation.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = '89303523FEM400032'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
F999 OTHER ENVIRONMENTAL SERVICES 2,133,853,333.99 2.13 billion 105

Insight

Obligations for this award are entirely concentrated in PSC F999, Other Environmental Services, with $2.13 billion obligated across 105 awards in the 10-year window. This indicates a highly focused procurement profile rather than a diversified mix of product or service categories. The breadth of award count suggests recurring use of this PSC, but no other PSCs are present in the provided data to indicate distribution across additional categories.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '8900' AND content__award__awardID__awardContractID__PIID = '89303523FEM400032'
    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 ASC
Year Total Obligated Readable Actions
2023 925,100,912.34 925.10 million 16
2024 552,173,045.75 552.17 million 44
2025 656,579,375.90 656.58 million 45

Insight

Obligations for PIID 89303523FEM400032 declined from 925.10 million in 2023 to 552.17 million in 2024, then increased to 656.58 million in 2025, indicating a partial rebound after the 2024 low. Award count rose sharply from 16 in 2023 to 44 in 2024 and 45 in 2025, showing that obligations became distributed across substantially more awards. The pattern suggests reduced concentration in 2024 and continued higher award volume in 2025 despite obligations remaining below the 2023 peak.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.