Award Number

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

Federal award page for award number 80NM0021F0008 under agency ID 8000, summarizing obligations and action activity for the last full year.

This page covers award number 80NM0021F0008 for agency ID 8000 over the last full year. The award shows $201.78 million in total obligated dollars across 13 actions, with an average action value of $15,521,333.69.

Generated at 03/20/2026

Analysis period: Last full year

Dollar figures are shown as reported in the analysis window and may differ slightly between readable and exact values.

Agency ID
8000
PIID
80NM0021F0008
Type
Award
Total Obligated
201.78 million
201,777,338.00
Actions
13
Average Action Value
15,521,333.69

Overview

In the last full year, award 80NM0021F0008 recorded total obligated dollars of 201,777,338, shown here as 201.78 million. The award had 13 recorded actions, which produces an average action value of 15,521,333.69. This page summarizes the award-level activity for agency ID 8000 without adding contract details not provided in the source inputs.

How to use this page

Use this page to review obligation volume and action count for award 80NM0021F0008 within the selected period. The figures support basic comparison across award pages, especially when looking at total dollars obligated, number of actions, and average action size.

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 1 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 201,777,338.00 201.78 million 13

Insight

Within the 1-year window for PIID 80NM0021F0008, all reported obligation is concentrated in a single top agency: the National Aeronautics and Space Administration, totaling $201.78 million across 13 awards. This indicates a fully concentrated obligation profile at the agency level for the provided rows, with no diversification across other agencies in the dataset.

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 1 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 201,777,338.00 201.78 million 13

Insight

Obligations in the 1-year window are fully concentrated with a single vendor: CALIFORNIA INSTITUTE OF TECHNOLOGY (CAGE 23835). This vendor accounts for $201.78 million across 13 awards, indicating a high degree of award concentration for PIID 80NM0021F0008. With no other vendors listed in this period, there is no evidence of 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 1 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) 201,777,338.00 201.78 million 13

Insight

Award activity in the past year is fully concentrated in NAICS 541715, with 13 awards totaling $201.78 million. This indicates a narrow but significant obligation profile within a single research and development category. No additional NAICS codes are represented in the provided rows, so the distribution cannot be assessed beyond this dominant classification.

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 1 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 201,777,338.00 201.78 million 13

Insight

Obligations under PIID 80NM0021F0008 are fully concentrated in PSC AR12, with $201.78 million obligated across 13 awards in the 1-year window. This indicates a narrow expenditure profile centered on space R&D services, specifically applied research and related supporting activities. The distribution suggests limited PSC diversification within this award record.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 201,777,338.00 201.78 million 13

Insight

For FY2025, this award reports $201.78 million in total obligations across 13 awards, indicating a high concentration of obligations within the one-year window. The average obligation per award is roughly $15.5 million, suggesting a small number of sizable actions rather than broad distribution across many awards. With only one year of data provided, no year-over-year trend can be assessed.

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