Award Number

Award Number 8000 / 80MSFC20C0034 Federal Contract Action Summary (Last 10 Years)

Award number 80MSFC20C0034 for agency 8000 shows 71 recorded actions over the last 10 years and $3.02 billion in total obligations.

This page summarizes federal procurement activity tied to award number 80MSFC20C0034 for agency ID 8000. The record covers the last 10 years and reflects $3,015,030,221.71 in total obligated value across 71 actions.

Generated at 03/20/2026

Analysis period: Last 10 years

Monetary figures are shown as both readable and exact amounts; the average action value is $42,465,214.39.

Agency ID
8000
PIID
80MSFC20C0034
Type
Award
Total Obligated
3.02 billion
3,015,030,221.71
Actions
71
Average Action Value
42,465,214.39

Overview

The award record for 80MSFC20C0034 shows sustained procurement activity across the last 10 years. Total obligated value is $3,015,030,221.71, with 71 actions recorded and an average action value of $42,465,214.39. This gives a concise view of the award’s scale and action frequency within agency 8000.

How to use this page

Use this page to review obligation volume, action count, and average action value for the award. It is suitable for comparing this award against other FPDS records by time window, obligation level, or action activity. The figures shown here are limited to the inputs provided for this page.

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 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 3,015,030,221.71 3.02 billion 71

Insight

Within the 10-year window, this award is entirely concentrated under the National Aeronautics and Space Administration (NASA), with 71 awards totaling $3.02 billion. The obligation profile indicates a single-agency concentration rather than a distributed award base across multiple agencies. This level of concentration suggests NASA is the sole top agency associated with the award record in this 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 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
SPACE EXPLORATION TECHNOLOGIES CORP. 3BVL8 3,015,030,221.71 3.02 billion 71

Insight

Over the 10-year window for award 80MSFC20C0034, obligations are entirely concentrated with SPACE EXPLORATION TECHNOLOGIES CORP. (CAGE 3BVL8). The vendor accounts for $3.02 billion across 71 awards, indicating a highly concentrated award distribution rather than a broad vendor base. This pattern suggests sustained reliance on a single contractor within the observed period.

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 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) 3,015,030,221.71 3.02 billion 71

Insight

Obligations are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), with $3.02 billion across 71 awards over the 10-year window. This indicates a highly specialized award profile with no diversification across additional NAICS categories in the provided data. The concentration suggests sustained procurement activity in a single scientific/technical services 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 = '80MSFC20C0034'
    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
AR32 R&D- SPACE: FLIGHT (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 3,015,030,221.71 3.02 billion 71

Insight

Obligations under PIID 80MSFC20C0034 are entirely concentrated in PSC AR32, R&D- Space: Flight (Applied Research/Exploratory Development), with $3.02 billion across 71 awards over the 10-year window. This indicates a highly focused procurement profile centered on space flight research and development, with no evidence in the provided rows of material PSC diversification. The concentration suggests this PSC is the dominant driver of obligated spending for this award.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2020 139,618,488.00 139.62 million 6
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 were concentrated in 2022–2024, when annual obligations ranged from 619.98 million to 867.79 million, well above 2020 and 2025. The highest annual obligation occurred in 2022 at 867.79 million, followed by a decline in 2023 and 2024, then a sharper drop in 2025 to 221.38 million. Award counts increased materially over the period, rising from 6 in 2020 to 23 in 2025, indicating more frequent annual award activity even as obligated dollars declined in the most recent year.

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.