This award page summarizes procurement activity for award number 80MSFC23CA014 under agency ID 8000 across the last 5 years. The record shows 39 award actions and total obligated value of $1,686,950,118.19.
Award Number
Award Number 8000 / 80MSFC23CA014 Federal Contract Action Summary (Last 5 Years)
Award number 80MSFC23CA014 for agency 8000 shows 39 actions and $1.69 billion obligated over the last 5 years.
Totals reflect the provided analysis window and the exact obligated amount of $1,686,950,118.19, which rounds to $1.69 billion.
Overview
The award record for PIID 80MSFC23CA014 shows a total obligated value of $1,686,950,118.19 across 39 actions in the last 5 years. The average action value is $43,255,131.24, indicating a high-dollar obligation pattern within the analysis window. This page is limited to the supplied award-level identifiers and summary totals.
How to use this page
Use this page to review the award number, count of actions, and obligated totals associated with agency ID 8000. It supports quick screening of award activity and comparison against other FPDS award records using the same analysis window. The figures are presented as provided and should be read as aggregate summary data, not as a description of individual contract line items or performance details.
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 = '80MSFC23CA014'
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,686,950,118.19 | 1.69 billion | 39 |
Insight
Within the 5-year window, all reported obligations for PIID 80MSFC23CA014 are concentrated in a single agency: NASA, with $1.69 billion across 39 awards. This indicates full obligation concentration at the agency level in the provided data, with no distribution across other agencies. The award count suggests repeated procurement activity within the same agency rather than a one-off obligation.
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 = '80MSFC23CA014'
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 |
|---|---|---|---|---|
| BLUE ORIGIN LLC | 5VWN7 | 1,686,950,118.65 | 1.69 billion | 37 |
| BLUE ORIGIN MANUFACTURING, LLC | 0QQR3 | -0.46 | -0.46 | 2 |
Insight
Obligations are highly concentrated with BLUE ORIGIN LLC, which accounts for 1.69 billion across 37 awards over the 5-year window. BLUE ORIGIN MANUFACTURING, LLC appears only marginally, with 2 awards and a negligible net obligation of -0.46, indicating no material share of funding in this set. Overall, the award activity and obligated dollars are overwhelmingly associated with a single vendor entity.
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 = '80MSFC23CA014'
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,686,950,118.19 | 1.69 billion | 39 |
Insight
Over the 5-year window, this award is fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). The award reflects 39 obligations totaling $1.69 billion, indicating sustained activity under a single R&D classification rather than a diversified NAICS distribution. This concentration suggests the award’s scope is narrowly aligned to one technical research domain.
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 = '80MSFC23CA014'
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 |
|---|---|---|---|---|
| AR12 | SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; APPLIED RESEARCH | 1,686,950,118.19 | 1.69 billion | 39 |
Insight
Over the 5-year window, obligations under PIID 80MSFC23CA014 are fully concentrated in PSC AR12, which accounts for the entire reported total of $1.69 billion across 39 awards. This indicates a highly focused procurement profile centered on space R&D services, with no evidence in the provided data of material distribution across other PSCs. The concentration suggests the award activity is consistently aligned to a single requirement category rather than being broadly diversified.
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 = '80MSFC23CA014'
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 |
|---|---|---|---|
| 2023 | 426,010,000.00 | 426.01 million | 7 |
| 2024 | 483,067,644.00 | 483.07 million | 13 |
| 2025 | 777,872,474.19 | 777.87 million | 19 |
Insight
Obligations on award 80MSFC23CA014 increased each year in the 5-year window, rising from $426.01 million in 2023 to $483.07 million in 2024 and $777.87 million in 2025. Award activity also expanded, from 7 awards in 2023 to 13 in 2024 and 19 in 2025, indicating broader distribution of obligations over time. The largest year-over-year increase occurred in 2025, suggesting a marked acceleration in funding and award count relative to prior 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.