Award Number

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

Federal procurement profile for award number 80MSFC20C0052 at agency ID 8000, summarizing obligations and action activity over the last full year.

This page summarizes award number 80MSFC20C0052 for agency ID 8000 during the last full year. The award shows total obligated funding of 514.89 million across 37 actions, with an average action value of 13,915,865.78.

Generated at 03/20/2026

Analysis period: Last full year

Obligation totals are shown as both the readable amount and the exact recorded figure of 514,887,034.

Agency ID
8000
PIID
80MSFC20C0052
Type
Award
Total Obligated
514.89 million
514,887,034.00
Actions
37
Average Action Value
13,915,865.78

Overview

The award record for 80MSFC20C0052 reflects 514,887,034 in total obligated funding during the last full year. Activity is spread across 37 award actions, which produces an average action value of 13,915,865.78.

How to use this page

Use this page to review the award-level obligation total and action count tied to PIID 80MSFC20C0052. The figures support quick comparison of funding volume and action frequency within agency ID 8000 for the selected period.

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 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 514,887,034.00 514.89 million 37

Insight

Within the 1-year window for award PIID 80MSFC20C0052, obligations are fully concentrated in a single agency: NASA, with $514.89 million across 37 awards. This indicates that the award activity captured in this query is entirely associated with one agency rather than being distributed across multiple agencies. The volume of obligations relative to the award count suggests sustained funding activity within the same agency scope.

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 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
BOEING COMPANY, THE 3A768 514,887,034.00 514.89 million 37

Insight

For PIID 80MSFC20C0052 over the 1-year window, obligated funding is fully concentrated with a single vendor. BOEING COMPANY, THE (CAGE 3A768) received $514.89 million across 37 awards, indicating a highly concentrated award profile with repeated obligations to the same contractor.

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 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 514,887,034.00 514.89 million 37

Insight

The award is fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $514.89 million obligated across 37 awards in the 1-year window. This indicates a highly specialized procurement profile with no observed diversification across NAICS codes in the provided data. The average obligation per award is substantial, consistent with large-scale aerospace/space vehicle contracting activity.

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 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
AR11 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH 514,887,034.00 514.89 million 37

Insight

AR11 accounts for the full reported obligation volume in this 1-year window, totaling $514.89 million across 37 awards. This indicates complete concentration in a single PSC, with no diversification across other PSCs in the provided results. The activity is therefore highly concentrated in space R&D services and related research/support functions 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 = '80MSFC20C0052'
    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 514,887,034.00 514.89 million 37

Insight

Over the past 1 year, this award reflects 514.89 million in total obligations across 37 awards in 2025. The obligation volume is highly concentrated in this single year, indicating that recent activity accounts for the full observed window. The average obligation per award is substantial, suggesting a small number of high-value actions rather than broad, low-dollar distribution.

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.