Award Number

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

Federal procurement analysis for award number 80NM0018F0615 under agency ID 8000, covering obligations and action activity over the last 5 years.

This page summarizes procurement activity for award number 80NM0018F0615 for agency ID 8000 over the last 5 years. It shows 49 award actions with total obligated amounts of 1.48 billion and an average action value of 30,181,074.73.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures are based on the provided analysis window and may reflect rounded and exact obligation totals.

Agency ID
8000
PIID
80NM0018F0615
Type
Award
Total Obligated
1.48 billion
1,478,872,662.00
Actions
49
Average Action Value
30,181,074.73

Overview

The award record for 80NM0018F0615 shows 49 actions in the last 5 years. Total obligated amount is 1,478,872,662, with an average action value of 30,181,074.73.

How to use this page

Use this page to review the scale of obligations tied to award number 80NM0018F0615 and compare action activity over the selected period. The figures are suitable for quick filtering, citation in procurement analysis, and locating the award within agency ID 8000 activity.

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 = '80NM0018F0615'
    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,478,872,662.00 1.48 billion 49

Insight

Within the 5-year window, all recorded obligation for PIID 80NM0018F0615 is concentrated in a single agency: NASA (Agency ID 8000). NASA accounts for $1.48 billion across 49 awards, indicating a fully concentrated distribution rather than a spread across multiple agencies. This pattern suggests the award history is agency-specific and not diversified across the broader federal portfolio.

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 = '80NM0018F0615'
        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,478,872,662.00 1.48 billion 49

Insight

Over the 5-year window, obligations under PIID 80NM0018F0615 are fully concentrated with a single vendor, California Institute of Technology (CAGE 23835). This vendor received 49 awards totaling $1.48 billion, indicating a highly concentrated award pattern with no observable distribution across other vendors in the provided data.

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 = '80NM0018F0615'
    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,478,872,662.00 1.48 billion 49

Insight

For this award over the 5-year window, obligations are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). The award accounts for $1.48 billion across 49 actions, indicating sustained funding in a single primary research and development category rather than a diversified NAICS mix. This concentration suggests the award’s obligated value is driven by recurring work within the same technical scope.

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 = '80NM0018F0615'
    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
AR22 R&D- SPACE: SCIENCE/APPLICATIONS (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 1,478,872,662.00 1.48 billion 49

Insight

Obligations under this award are entirely concentrated in PSC AR22, R&D- Space: Science/Applications (Applied Research/Exploratory Development), totaling $1.48 billion across 49 awards in the 5-year window. This indicates a highly focused procurement profile with no visible PSC diversification in the provided data. The volume of awards suggests repeated funding activity within the same research category rather than a broad mix of product or service types.

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 = '80NM0018F0615'
    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 450,686,842.00 450.69 million 8
2022 413,528,833.00 413.53 million 9
2023 265,595,150.00 265.60 million 6
2024 232,878,287.00 232.88 million 15
2025 116,183,550.00 116.18 million 11

Insight

Obligations for PIID 80NM0018F0615 declined over the five-year period, falling from $450.69 million in 2021 to $116.18 million in 2025, a reduction of about 74%. Award volume is more unevenly distributed: counts increased from 8 in 2021 to a peak of 15 in 2024, then eased to 11 in 2025. The pattern suggests that more awards were made in later years, but at materially lower obligated values, indicating a shift toward smaller-dollar activity and reduced concentration in annual funding levels.

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.