Award Number

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

Award number 80MSFC20C0034 for agency ID 8000 shows 23 actions in the last full year with $221.38 million obligated.

This page summarizes federal procurement activity for award number 80MSFC20C0034 under agency ID 8000 during the last full year. The award shows total obligated dollars of $221,380,243.13 across 23 actions, with an average action value of $9,625,227.96.

Generated at 03/20/2026

Analysis period: Last full year

Values are based on the provided analysis window and may differ from other reporting periods or rounded displays.

Agency ID
8000
PIID
80MSFC20C0034
Type
Award
Total Obligated
221.38 million
221,380,243.13
Actions
23
Average Action Value
9,625,227.96

Overview

In the last full year, award number 80MSFC20C0034 recorded 23 award actions and $221,380,243.13 in total obligations. The average action value was $9,625,227.96, indicating substantial funding movement within the period. This page is intended to help users review the award at a glance before drilling into action-level detail.

How to use this page

Use this page to check the award-level obligation total, count of actions, and average action value for the selected period. It is useful for quick comparisons across awards, identifying higher-value activity, and confirming whether the reported amount aligns with the analysis window.

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 1 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 221,380,243.13 221.38 million 23

Insight

Over the past 1 year, obligations associated with PIID 80MSFC20C0034 are fully concentrated in a single agency: the National Aeronautics and Space Administration (Agency ID 8000). NASA accounts for $221.38 million across 23 awards, indicating a focused award distribution with no cross-agency spread in the provided data. This concentration suggests the activity is entirely tied to NASA rather than dispersed across multiple departments or bureaus.

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 1 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 221,380,243.13 221.38 million 23

Insight

Within the 1-year window for award 80MSFC20C0034, obligations are fully concentrated with SPACE EXPLORATION TECHNOLOGIES CORP. (CAGE 3BVL8), which accounts for $221.38 million across 23 actions. This indicates a single-vendor obligation pattern for this award, with no other vendors listed in the provided rows.

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 1 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) 221,380,243.13 221.38 million 23

Insight

Award activity over the past 1 year is fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This category accounts for $221.38 million across 23 awards, indicating a narrow but substantial obligation profile tied to a single R&D classification. The absence of additional NAICS codes in the provided rows suggests no observable diversification within this query window.

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 1 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) 221,380,243.13 221.38 million 23

Insight

Obligations for award PIID 80MSFC20C0034 in the past year are fully concentrated in PSC AR32, R&D- Space: Flight (Applied Research/Exploratory Development). This PSC accounts for $221.38 million across 23 awards, indicating a narrow obligation profile with activity centered in a single research-and-development category. The concentration suggests this award is not diversified across multiple product or service types within the observed window.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 221,380,243.13 221.38 million 23

Insight

In the 1-year window, obligations for PIID 80MSFC20C0034 are concentrated in FY 2025, with $221.38 million obligated across 23 awards. This indicates a relatively high level of annual activity with obligations spread across multiple awards rather than isolated to a single action. No other years are present in the provided data, so longer-term trend comparison is not supported here.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.