This page summarizes federal procurement activity for award number 80MSFC20C0034 over the last 5 years. It records 65 award actions with total obligations of 2.88 billion dollars, or 2,875,411,733.71 in exact terms.
Award Number
Award Number 8000 / 80MSFC20C0034 Federal Contract Action Summary (Last 5 Years)
Federal award record for award number 80MSFC20C0034 under agency ID 8000, showing obligation and action data for the last 5 years.
Average action value across the 65 recorded actions is 44,237,103.6, based on the stated analysis window.
Overview
This award page presents procurement activity associated with award number 80MSFC20C0034 for agency ID 8000 during the last 5 years. The record shows 65 award actions and total obligated dollars of 2,875,411,733.71, with a readable total of 2.88 billion. The average action value is 44,237,103.6.
How to use this page
Use this page to review the award-level obligation total and the pace of action activity over the selected period. The award action count and average action value provide a compact view of how obligation amounts are distributed across the 65 actions.
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 = '80MSFC20C0034'
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 | 2,875,411,733.71 | 2.88 billion | 65 |
Insight
NASA is the only agency represented in this 5-year top_agencies view for award PIID 80MSFC20C0034, indicating all observed obligations are concentrated within a single awarding agency. The award accounts for $2.88 billion across 65 awards, suggesting sustained and repeated funding activity rather than a one-off obligation. This concentration limits interagency distribution analysis, but it does show a consistently dominant relationship with NASA over the period.
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 = '80MSFC20C0034'
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 |
|---|---|---|---|---|
| SPACE EXPLORATION TECHNOLOGIES CORP. | 3BVL8 | 2,875,411,733.71 | 2.88 billion | 65 |
Insight
SPACE EXPLORATION TECHNOLOGIES CORP. (CAGE 3BVL8) accounts for all reported top-vendor obligation in this 5-year window, with $2.88 billion across 65 awards. This indicates a highly concentrated vendor profile for PIID 80MSFC20C0034, with no other vendors represented in the provided rows. The average obligation per award is approximately $44.2 million, suggesting repeated high-value activity with a single supplier.
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 = '80MSFC20C0034'
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) | 2,875,411,733.71 | 2.88 billion | 65 |
Insight
Within the 5-year window for award PIID 80MSFC20C0034 at agency 8000, obligations are fully concentrated in NAICS 541715, with $2.88 billion across 65 awards. This indicates a highly concentrated procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated activity in the same R&D category rather than a broad mix of requirements.
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 = '80MSFC20C0034'
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 |
|---|---|---|---|---|
| AR32 | R&D- SPACE: FLIGHT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) | 2,875,411,733.71 | 2.88 billion | 65 |
Insight
Obligations for PIID 80MSFC20C0034 are fully concentrated in PSC AR32, R&D - Space: Flight (Applied Research/Exploratory Development), with $2.88 billion across 65 awards over the 5-year window. This indicates a highly focused acquisition profile centered on flight-related space research and development rather than a diversified PSC mix. The award count suggests the obligation base is spread across multiple actions, but all remain within a single PSC category.
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 = '80MSFC20C0034'
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 | 397,992,428.24 | 397.99 million | 12 |
| 2022 | 867,789,100.00 | 867.79 million | 6 |
| 2023 | 768,272,594.75 | 768.27 million | 10 |
| 2024 | 619,977,367.59 | 619.98 million | 14 |
| 2025 | 221,380,243.13 | 221.38 million | 23 |
Insight
Obligations for PIID 80MSFC20C0034 peaked in 2022 at $867.79 million, then declined each year through 2025 to $221.38 million, indicating a material downward funding trend over the 5-year window. Award activity moved in the opposite direction, rising from 6 awards in 2022 to 23 awards in 2025, which suggests a shift toward smaller, more frequent obligations rather than a few large awards. Overall, the funding is concentrated in the 2022–2024 period, with 2025 showing the highest award count but the lowest obligated value in the series.
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.