Award Number

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

Federal procurement summary for award 80NM0021F0008 under agency ID 8000 over the last 10 years.

This page summarizes award number 80NM0021F0008 for agency ID 8000 across the last 10 years. The award shows 59 actions and total obligated funding of 1.59 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated amounts are shown as both a readable figure and an exact value of 1,588,078,862, with average action value calculated at 26,916,590.88.

Agency ID
8000
PIID
80NM0021F0008
Type
Award
Total Obligated
1.59 billion
1,588,078,862.00
Actions
59
Average Action Value
26,916,590.88

Overview

Award 80NM0021F0008 is associated with agency ID 8000 and is summarized here for the last 10 years of activity. The record shows 59 award actions and total obligated funding of 1,588,078,862. The average obligated value per action is 26,916,590.88.

How to use this page

Use this page to review the award-level obligation pattern for PIID 80NM0021F0008 and compare its activity over time. The figures support basic analysis of funding concentration, action frequency, and average action size within the selected 10-year window.

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 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
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 1,588,078,862.00 1.59 billion 59

Insight

Over the 10-year window, all reported obligations for PIID 80NM0021F0008 are concentrated at a single agency, the National Aeronautics and Space Administration (agency ID 8000). NASA accounts for $1.59 billion across 59 awards, indicating a fully concentrated obligation profile within the provided data. This suggests sustained award activity with no distribution across other agencies in the queried result set.

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 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
CALIFORNIA INSTITUTE OF TECHNOLOGY 23835 1,588,078,862.00 1.59 billion 59

Insight

CALIFORNIA INSTITUTE OF TECHNOLOGY accounts for the entirety of reported obligations in this 10-year view, with $1.59 billion across 59 awards. This indicates a highly concentrated vendor profile for PIID 80NM0021F0008, with no other vendors represented in the provided rows. The average obligation per award is substantial, suggesting sustained repeat use of the same contractor over the period.

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 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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 1,588,078,862.00 1.59 billion 59

Insight

Over the 10-year window, obligations for award 80NM0021F0008 are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences, with no other NAICS codes reported in this section. This category accounts for $1.59 billion across 59 awards, indicating a sustained and highly focused procurement profile. The concentration suggests the award’s activity has been narrowly aligned to R&D services within this technical discipline.

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 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
AR12 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; APPLIED RESEARCH 1,588,078,862.00 1.59 billion 59

Insight

Obligations for PIID 80NM0021F0008 over the 10-year window are concentrated entirely in PSC AR12, which accounts for $1.59 billion across 59 awards. This indicates a highly focused services profile centered on space R&D and related supporting activities, with no visible diversification across other PSCs in the provided data. The volume of awards suggests repeated procurement activity within the same category rather than a broad mix of commodities or services.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2020 7,162,000.00 7.16 million 1
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 for PIID 80NM0021F0008 increased sharply from 7.16 million in 2020 to 255.26 million in 2021, then rose further to 394.05 million in 2022 and peaked at 576.06 million in 2023. Award volume also expanded over the same period, from 1 award in 2020 to 12 awards in 2023, indicating a broadening distribution of obligations across multiple actions. Obligations declined in 2024 to 153.77 million while award count increased to 15, then partially recovered in 2025 to 201.78 million across 13 awards.

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.