This award record covers 39 actions over the last 10 years and shows total obligations of $1.69 billion, or 1686950118.19 in exact dollars. The average action value is 43255131.24, providing a concise view of award activity over the analysis window.
Award Number
Award Number 8000 / 80MSFC23CA014 Federal Contract Action Summary (Last 10 Years)
Federal procurement award page for award number 80MSFC23CA014 under agency ID 8000, summarizing actions and obligations over the last 10 years.
Dollar figures are shown as provided in readable and exact formats and reflect the selected 10-year analysis window.
Overview
This page summarizes procurement activity tied to award number 80MSFC23CA014 for agency ID 8000 across the last 10 years. The record includes 39 actions, total obligated amount of 1686950118.19, and an average action value of 43255131.24.
How to use this page
Use this page to review the award’s obligation pattern, action volume, and average action value within the selected analysis window. The figures support basic award-level comparison and retrieval without adding interpretation beyond the underlying FPDS data.
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 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 | 1,686,950,118.19 | 1.69 billion | 39 |
Insight
For PIID 80MSFC23CA014 over the 10-year window, obligations are fully concentrated in a single agency: the National Aeronautics and Space Administration. NASA accounts for 1.69 billion in obligated value across 39 awards, indicating all recorded activity in this view is within one agency rather than distributed across multiple agencies.
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 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 |
|---|---|---|---|---|
| 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 for PIID 80MSFC23CA014 are highly concentrated in BLUE ORIGIN LLC (CAGE 5VWN7), which accounts for 1.69 billion across 37 awards. BLUE ORIGIN MANUFACTURING, LLC (CAGE 0QQR3) has only 2 awards and a negligible net obligation of -0.46, indicating minimal impact on the overall award value. This distribution suggests the award activity is overwhelmingly centered on a single vendor.
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 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) | 1,686,950,118.19 | 1.69 billion | 39 |
Insight
Across the 10-year window, award PIID 80MSFC23CA014 is fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This NAICS accounts for $1.69 billion across 39 awards, indicating sustained and highly concentrated R&D procurement activity within a single industry classification.
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 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 |
|---|---|---|---|---|
| AR12 | SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; APPLIED RESEARCH | 1,686,950,118.19 | 1.69 billion | 39 |
Insight
Obligations under this award are highly concentrated in PSC AR12, which accounts for the full reported total of $1.69 billion across 39 actions over the 10-year window. This indicates the award is focused on space R&D services, specifically applied research supporting space flight, research, and related activities. The distribution suggests a single dominant procurement category rather than a diversified mix of PSCs.
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 10 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 PIID 80MSFC23CA014 increased each year across the 2023–2025 period, rising from $426.01 million in 7 awards in 2023 to $483.07 million in 13 awards in 2024 and $777.87 million in 19 awards in 2025. The trend indicates both higher funding concentration and a broader distribution of obligations across more award actions over time. 2025 is the clear peak year, with obligations materially above the prior two 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.