Award Number

Award Number 8000 / 80NM0021F0008 Federal Contract Action Summary (Last 5 Years)

FPDS analysis page for award number 80NM0021F0008 under Agency ID 8000, showing obligations and action history for the last 5 years.

This page summarizes procurement activity for award number 80NM0021F0008 over the last 5 years. It shows 58 award actions with total obligated amounts of 1.58 billion and an average action value of 27,257,187.28.

Generated at 03/20/2026

Analysis period: Last 5 years

Financial totals are based on the provided readable and exact obligated amounts for the selected analysis window.

Agency ID
8000
PIID
80NM0021F0008
Type
Award
Total Obligated
1.58 billion
1,580,916,862.00
Actions
58
Average Action Value
27,257,187.28

Overview

Award number 80NM0021F0008 is the tracked procurement record for Agency ID 8000 in this FPDS view. Over the last 5 years, the award shows 58 actions and total obligated funding of 1,580,916,862, with an average action value of 27,257,187.28.

How to use this page

Use this page to review the scale and cadence of activity tied to award number 80NM0021F0008. The action count and obligation totals provide a concise starting point for comparing this award against other FPDS records in the same period.

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 = '8000' AND content__award__awardID__awardContractID__PIID = '80NM0021F0008'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 1,580,916,862.00 1.58 billion 58

Insight

Over the 5-year window, obligations for PIID 80NM0021F0008 are fully concentrated within a single top agency: the National Aeronautics and Space Administration. NASA accounts for $1.58 billion across 58 awards, indicating all observed activity in this section is tied to one agency rather than being distributed across multiple agencies.

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 = '8000' AND content__award__awardID__awardContractID__PIID = '80NM0021F0008'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
CALIFORNIA INSTITUTE OF TECHNOLOGY 23835 1,580,916,862.00 1.58 billion 58

Insight

Over the 5-year window, obligations for PIID 80NM0021F0008 are concentrated entirely with CALIFORNIA INSTITUTE OF TECHNOLOGY (CAGE 23835), which accounts for $1.58 billion across 58 awards. This indicates a highly concentrated vendor profile with no diversification evident in the provided rows. The award count suggests repeated obligation activity to the same vendor rather than a broad distribution across multiple recipients.

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 = '8000' AND content__award__awardID__awardContractID__PIID = '80NM0021F0008'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 1,580,916,862.00 1.58 billion 58

Insight

Over the 5-year window, obligations for PIID 80NM0021F0008 are fully concentrated in NAICS 541715, with $1.58 billion obligated across 58 awards. This indicates a narrow industrial base centered on research and development in the physical, engineering, and life sciences. The distribution suggests sustained reliance on a single NAICS code rather than diversification across multiple sectors.

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 = '8000' AND content__award__awardID__awardContractID__PIID = '80NM0021F0008'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
AR12 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; APPLIED RESEARCH 1,580,916,862.00 1.58 billion 58

Insight

Obligations under PIID 80NM0021F0008 are concentrated in PSC AR12, Space R&D Services, with $1.58 billion obligated across 58 awards over the 5-year window. This indicates a clear dominance of applied space research and supporting activities within the award record. The volume of awards suggests recurring procurement activity rather than a single isolated obligation.

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 = '8000' AND content__award__awardID__awardContractID__PIID = '80NM0021F0008'
    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 ASC
Year Total Obligated Readable Actions
2021 255,258,923.00 255.26 million 7
2022 394,051,416.00 394.05 million 11
2023 576,057,172.00 576.06 million 12
2024 153,772,013.00 153.77 million 15
2025 201,777,338.00 201.78 million 13

Insight

Obligations under PIID 80NM0021F0008 increased from $255.26 million in 2021 to a peak of $576.06 million in 2023, then declined to $153.77 million in 2024 and partially rebounded to $201.78 million in 2025. Award counts rose from 7 in 2021 to 12 in 2023, reached 15 in 2024, and eased to 13 in 2025, indicating a broader distribution of obligations across more awards in the later years. Overall, the pattern reflects a 2023 concentration at the highest obligation level followed by a sharp reduction in obligated dollars despite continued relatively high award counts.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.