This page presents the federal procurement record for award number 80NM0018F0615 for agency ID 8000. Over the last 10 years, the award shows 73 actions and total obligated dollars of 2,924,898,288.98, with an average action value of 40,067,099.85.
Award Number
Award Number 8000 / 80NM0018F0615 Federal Contract Action Summary (Last 10 Years)
FPDS award page for award number 80NM0018F0615 under agency ID 8000, summarizing obligation activity over the last 10 years.
Obligation totals are shown as provided for the last 10-year analysis window and may differ between readable and exact formats.
Overview
The award record for 80NM0018F0615 includes 73 reported actions within the last 10 years. Total obligated value is 2,924,898,288.98, which is readable as 2.92 billion, and the average action value is 40,067,099.85. This page is focused on the award-level procurement history associated with agency ID 8000.
How to use this page
Use this page to review the award’s obligation volume, action count, and average action value across the selected analysis window. It is most useful for comparing award activity over time or for locating this specific award number in FPDS records.
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 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 | 2,924,898,288.98 | 2.92 billion | 73 |
Insight
Obligations for this award are fully concentrated in National Aeronautics and Space Administration, which accounts for $2.92 billion across 73 awards in the 10-year window. This indicates a single-agency funding profile with no evidence of cross-agency distribution in the provided data. The volume of awards suggests repeated obligating activity within the same agency rather than broad federal spread.
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 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 | 2,924,898,288.98 | 2.92 billion | 73 |
Insight
Obligations under PIID 80NM0018F0615 are fully concentrated with a single vendor, California Institute of Technology (CAGE 23835), over the 10-year window. The vendor received 73 awards totaling $2.92 billion, indicating a highly concentrated award relationship rather than a broadly distributed vendor base.
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 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) | 2,924,898,288.98 | 2.92 billion | 73 |
Insight
Obligations for PIID 80NM0018F0615 over the 10-year window are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This category accounts for $2.92 billion across 73 awards, indicating a highly focused procurement pattern with no diversification across other NAICS codes in the provided data.
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 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 |
|---|---|---|---|---|
| AR22 | R&D- SPACE: SCIENCE/APPLICATIONS (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) | 2,924,898,288.98 | 2.92 billion | 73 |
Insight
Over the 10-year window, obligations for this award are fully concentrated in PSC AR22, which accounts for the entire reported total of $2.92 billion across 73 awards. This indicates a narrow procurement profile centered on R&D for space science/applications, rather than a diversified mix of product or service categories. The award pattern suggests sustained funding in a single PSC category over time.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2018 | 342,701,430.98 | 342.70 million | 5 |
| 2019 | 495,249,330.00 | 495.25 million | 9 |
| 2020 | 608,074,866.00 | 608.07 million | 10 |
| 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 peaked in 2020 at $608.07 million across 10 awards, following an increase from $342.70 million in 2018 to $495.25 million in 2019. After 2020, obligated amounts declined each year through 2025, dropping to $116.18 million, even as award counts remained relatively elevated and reached 15 in 2024. This indicates a shift from higher-dollar activity in the early part of the period to lower obligated values with more frequent awards in later years.
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.