Federal Contractor

SAVANNAH RIVER NUCLEAR SOLUTIONS, LLC Federal Contract Obligations (Last 5 Years)

SAVANNAH RIVER NUCLEAR SOLUTIONS, LLC shows 10.77 billion in obligated federal awards across 189 actions in the last 5 years, led by the Department of Energy.

In the last 5 years, SAVANNAH RIVER NUCLEAR SOLUTIONS, LLC (CAGE 4SZE8, UEI XLQ7CKUSQSD5) received 10.77 billion in obligated federal awards across 189 actions. Nearly all obligations came from the Department of Energy and were concentrated in NAICS 561210, Facilities Support Services.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual obligations range from 1.81 billion in 2021 to 2.74 billion in 2023, with 2025 at 2.38 billion and a small Forest Service award total of 6.83 thousand.

CAGE Code
4SZE8
UEI
XLQ7CKUSQSD5
Total Obligated
10.77 billion
10,774,412,905.38
Award Actions
189
Average Action Value
57,007,475.68

About SAVANNAH RIVER NUCLEAR SOLUTIONS, LLC federal contract activity

SAVANNAH RIVER NUCLEAR SOLUTIONS, LLC shows 10.77 billion in obligated awards across 189 awards over the last 5 years, for an average award value of 57.01 million. The profile is highly concentrated, with virtually all spending tied to a single contracting agency and a single dominant NAICS code.

Agency mix and customer concentration

The Department of Energy accounts for 10.77 billion of the vendor’s obligated value and 185 of 189 awards, indicating an overwhelmingly DOE-centered relationship. The only other recorded agency is the Forest Service, with 6.83 thousand across 4 awards, which is immaterial relative to the core portfolio.

Industry profile based on NAICS activity

NAICS 561210, Facilities Support Services, represents essentially the entire obligation base at 10.77 billion across 185 awards. NAICS 115310, Support Activities for Forestry, appears only in a minor secondary capacity with 6.83 thousand across 4 awards, reinforcing the narrow scope of the vendor’s federal activity.

Annual contract trend over the analysis window

Annual obligations remained in the multi-billion-dollar range throughout the period, with a low of 1.81 billion in 2021 and a peak of 2.74 billion in 2023. Award counts ranged from 31 to 55 per year, with 2021 showing the highest volume of awards but the lowest annual obligation total, suggesting smaller average award sizes that year.

How to interpret this page

This summary is based on FPDS-obligated dollars and award counts associated with CAGE 4SZE8 and UEI XLQ7CKUSQSD5 during the last 5 years. Agency, NAICS, and annual trend sections reflect the provided aggregated totals and are not adjusted for inflation, deobligation timing, or subcontracting activity.

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 = '4SZE8'
        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
8900 ENERGY, DEPARTMENT OF 10,774,406,077.06 10.77 billion 185
12C2 FOREST SERVICE 6,828.32 6.83 thousand 4

Insight

Over the last 5 years, SAVANNAH RIVER NUCLEAR SOLUTIONS, LLC received 10.77 billion in obligations across 189 awards, with an average award value of 57.0 million. Obligations are overwhelmingly concentrated at the Department of Energy, which accounts for 10.77 billion across 185 awards, indicating near-total reliance on a single agency customer. The Forest Service represents a negligible share of activity at 6.83 thousand across 4 awards.

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 = '4SZE8'
        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
561210 FACILITIES SUPPORT SERVICES 10,774,406,077.06 10.77 billion 185
115310 SUPPORT ACTIVITIES FOR FORESTRY 6,828.32 6.83 thousand 4

Insight

Over the last 5 years, obligations for SAVANNAH RIVER NUCLEAR SOLUTIONS, LLC are overwhelmingly concentrated in NAICS 561210, Facilities Support Services, which accounts for $10.77 billion across 185 of 189 awards. This indicates a highly concentrated procurement profile with limited diversification by NAICS. NAICS 115310, Support Activities for Forestry, represents only $6.83 thousand across 4 awards and is immaterial relative to total obligated dollars.

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 = '4SZE8'
        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 2,382,391,680.03 2.38 billion 31
2024 1,967,289,298.33 1.97 billion 32
2023 2,738,522,277.04 2.74 billion 39
2022 1,877,313,332.09 1.88 billion 32
2021 1,808,896,317.89 1.81 billion 55

Insight

Over the last 5 years, SAVANNAH RIVER NUCLEAR SOLUTIONS, LLC obligated $10.77 billion across 189 awards, with an average award value of $57.0 million. Annual obligation levels are relatively consistent but unevenly distributed, ranging from $1.81 billion in 2021 to a peak of $2.74 billion in 2023. Award volume is concentrated in 2021, which had 55 awards, while 2023 generated the highest dollar obligation with 39 awards, indicating larger average awards in that year.

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.