Federal Contractor

NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC Federal Contract Obligations (Last 10 Years)

Federal procurement profile for NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC (CAGE 14213, UEI LUJEPCRRT377) covering the last 10 years of award activity.

Over the last 10 years, NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC recorded 279 award actions with total obligations of 37.01 billion and an average action value of 132.64 million. Most obligations were attributed to the Department of Energy, with smaller activity recorded at NASA.

Generated at 03/21/2026

Analysis period: Last 10 years

Values reflect the provided 10-year analysis window and may not include all procurement activity outside the reported dataset.

CAGE Code
14213
UEI
LUJEPCRRT377
Total Obligated
37.01 billion
37,007,267,588.85
Award Actions
279
Average Action Value
132,642,536.16

About NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC federal contract activity

NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC (CAGE 14213, UEI LUJEPCRRT377) received 279 FPDS-recorded awards totaling $37.01 billion over the last 10 years, for an average award value of $132.64 million. The profile is highly concentrated, with one agency and one primary NAICS code accounting for essentially all recorded obligation dollars.

Agency mix and customer concentration

The Department of Energy is the dominant customer, representing $37.01 billion across 277 awards, or virtually the entire observed obligation base. NASA appears as a minor secondary agency with $22,998 across 2 awards, indicating limited cross-agency activity outside the core DOE relationship.

Industry profile based on NAICS activity

Facilities Support Services (NAICS 561210) accounts for $37.01 billion across 277 awards and is the clear primary labor/services classification in the record. The remaining NAICS activity is immaterial by comparison, with small obligations under R&D in the physical, engineering, and life sciences and Software Publishers.

Annual contract trend over the analysis window

Annual obligations have remained elevated and relatively stable in the $3.90 billion to $5.79 billion range for the five years shown, with 2025 currently the highest year at $5.79 billion across 45 awards. The pattern indicates sustained high-volume contract activity rather than a one-time spike, with no sharp break in the recent trend.

How to interpret this page

This summary is based on FPDS obligations associated with the vendor’s CAGE code and UEI over the last 10 years, using recorded award counts and obligated dollars. Agency, NAICS, and annual trend sections reflect the provided aggregates and are limited to the values shown; no additional assumptions or outside data were used.

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 = '14213'
        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 37,007,244,590.85 37.01 billion 277
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 22,998.00 23.00 thousand 2

Insight

Over the last 10 years, NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC received $37.01 billion across 279 awards, with an average award value of $132.64 million. Obligations are overwhelmingly concentrated in the Department of Energy, which accounts for $37.01 billion and 277 awards, indicating near-total dependency on a single agency customer. NASA represents a negligible share of activity, with 2 awards totaling $23.00 thousand.

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 = '14213'
        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
561210 FACILITIES SUPPORT SERVICES 37,007,244,590.85 37.01 billion 277
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 21,998.00 22.00 thousand 1
511210 SOFTWARE PUBLISHERS 1,000.00 1.00 thousand 1

Insight

Over the last 10 years, obligations for NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC under CAGE 14213 are overwhelmingly concentrated in NAICS 561210, Facilities Support Services, which accounts for $37.01 billion across 277 of 279 awards. The remaining activity is immaterial in comparison, with only one award each in NAICS 541712 and 511210 totaling $22.0 thousand and $1.0 thousand, respectively. This indicates a highly concentrated award profile with minimal diversification across NAICS codes.

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 = '14213'
        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 5,789,815,037.84 5.79 billion 45
2024 5,019,168,840.61 5.02 billion 37
2023 5,102,717,208.01 5.10 billion 31
2022 3,899,409,659.40 3.90 billion 36
2021 4,728,719,100.20 4.73 billion 28
2020 3,895,886,226.66 3.90 billion 24
2019 1,972,829,573.21 1.97 billion 23
2018 5,385,664,559.03 5.39 billion 29
2017 1,213,057,383.89 1.21 billion 26

Insight

Over the last 10 years, NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC has received $37.01 billion across 279 awards, averaging $132.6 million per award. Obligations are concentrated in recent years, with 2025 ($5.79 billion) and 2024 ($5.02 billion) at the top of the period, followed closely by 2023 ($5.10 billion) and 2018 ($5.39 billion); 2017 was the low point at $1.21 billion. Award counts remain relatively steady year to year, ranging from 23 to 45, indicating that obligation growth is driven more by award size than by a large change in award volume.

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.