This page summarizes procurement activity for award number 80MSFC20C0052 within Agency ID 8000 over the last 5 years. The award has 117 actions and 2,087,675,797 in total obligated dollars, with an average action value of 17,843,382.88.
Award Number
Award Number 8000 / 80MSFC20C0052 Federal Contract Action Summary (Last 5 Years)
Award number 80MSFC20C0052 for Agency ID 8000 shows 117 recorded actions over the last 5 years and 2.09 billion in total obligations.
Values are based on the provided analysis window and may reflect obligations across multiple actions for the same award.
Overview
Over the last 5 years, award number 80MSFC20C0052 under Agency ID 8000 recorded 117 actions and 2,087,675,797 in total obligated dollars. The average value per action is 17,843,382.88, indicating a high-dollar award with repeated activity in the period covered.
How to use this page
Use this page to review the award’s obligation history, action count, and average action value within the selected 5-year window. The figures provide a compact summary for comparison, tracking, and identifying the scale of spending tied to this PIID.
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 = '80MSFC20C0052'
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,087,675,797.00 | 2.09 billion | 117 |
Insight
For PIID 80MSFC20C0052, all identified obligations in the 5-year window are concentrated within a single agency: NASA (agency ID 8000). NASA accounts for $2.09 billion across 117 awards, indicating a highly concentrated award pattern with no other agencies represented in the provided rows.
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 = '80MSFC20C0052'
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 |
|---|---|---|---|---|
| BOEING COMPANY, THE | 3A768 | 2,087,675,797.00 | 2.09 billion | 117 |
Insight
Over the 5-year window, obligations for PIID 80MSFC20C0052 are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 3A768). This vendor accounts for $2.09 billion across 117 awards, indicating sustained award activity and a highly concentrated vendor base for this action.
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 = '80MSFC20C0052'
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 |
|---|---|---|---|---|
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 2,087,675,797.00 | 2.09 billion | 117 |
Insight
Over the 5-year window, obligations for award 80MSFC20C0052 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for the entire reported obligated amount of $2.09 billion across 117 actions, indicating a highly specialized and non-diversified procurement profile. The distribution suggests the award activity is centered in a single industrial classification with no other NAICS codes reflected in this section.
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 = '80MSFC20C0052'
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 |
|---|---|---|---|---|
| AR11 | SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH | 2,087,675,797.00 | 2.09 billion | 117 |
Insight
Obligations for PIID 80MSFC20C0052 over the 5-year window are fully concentrated in PSC AR11, which accounts for the entire reported total of $2.09 billion across 117 awards. This indicates a highly focused obligation profile with no diversification across other PSCs in the provided data. The concentration in a single space R&D services code suggests the award activity is dominated by one functional 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 = '80MSFC20C0052'
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 | 233,053,009.00 | 233.05 million | 17 |
| 2022 | 442,841,445.00 | 442.84 million | 21 |
| 2023 | 418,321,833.00 | 418.32 million | 20 |
| 2024 | 478,572,476.00 | 478.57 million | 22 |
| 2025 | 514,887,034.00 | 514.89 million | 37 |
Insight
Obligations on PIID 80MSFC20C0052 increased overall across the 5-year window, rising from $233.05 million in 2021 to $514.89 million in 2025, with a temporary dip in 2023 before resuming growth in 2024 and 2025. Award activity was moderately concentrated in the later years, with the highest award count in 2025 (37) alongside the highest obligated amount, indicating both increased volume and value. The pattern suggests sustained expansion rather than a single-year spike, with 2024–2025 accounting for the strongest funding levels in the period.
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.