Award Number

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

Federal procurement summary for award number NNK17MA01T under agency ID 8000, covering the last 10 years of reported obligations and actions.

This page summarizes award number NNK17MA01T for agency ID 8000 over the last 10 years. The record shows 70 award actions and total obligated amount of 3.03 billion dollars.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts are based on the provided total obligated exact value of 3,029,850,123.69 and the reported average action value of 43,283,573.2.

Agency ID
8000
PIID
NNK17MA01T
Type
Award
Total Obligated
3.03 billion
3,029,850,123.69
Actions
70
Average Action Value
43,283,573.20

Overview

The award record for NNK17MA01T shows 70 reported actions across the last 10 years, with total obligated funding of 3,029,850,123.69 dollars. The average action value is 43,283,573.2 dollars, which provides a concise measure of the scale of activity reflected in the record.

How to use this page

Use this page to review the award number, the obligation total, and the action count together in one place. It is suited to quick historical analysis of reported federal procurement activity for agency ID 8000.

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 = 'NNK17MA01T'
    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,029,850,123.69 3.03 billion 70

Insight

For PIID NNK17MA01T over the 10-year window, all reported obligations are concentrated in a single top agency: NASA, with $3.03 billion across 70 awards. This indicates the award activity is entirely within one agency and is not distributed across multiple top agencies. The volume of awards alongside the large obligation total suggests sustained, high-value activity within NASA for this PIID.

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 = 'NNK17MA01T'
        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,029,850,123.69 3.03 billion 69
SPACE EXPLORATION TECHNOLOGIES CORP. 0.00 0.00 1

Insight

Obligations for PIID NNK17MA01T are highly concentrated with SPACE EXPLORATION TECHNOLOGIES CORP., which accounts for $3.03 billion across 69 awards under CAGE 3BVL8 over the 10-year window. A separate entry for the same vendor name without a CAGE code shows one award with no obligated amount, indicating a minimal non-obligated record rather than a material funding source. Overall, the award history is dominated by a single vendor and CAGE-coded record.

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 = 'NNK17MA01T'
    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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 3,029,850,123.69 3.03 billion 70

Insight

Over the 10-year window, obligations for PIID NNK17MA01T are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for the entire reported total of $3.03 billion across 70 awards, indicating a highly focused procurement profile with no diversity in the provided data. The concentration suggests sustained acquisition activity within a single industrial base segment.

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 = 'NNK17MA01T'
    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
V126 TRANSPORTATION/TRAVEL/RELOCATION- TRANSPORTATION: SPACE TRANSPORTATION/LAUNCH 3,029,850,123.69 3.03 billion 70

Insight

Award activity under PIID NNK17MA01T is fully concentrated in PSC V126, with $3.03 billion obligated across 70 awards over the 10-year window. This indicates a narrow spend profile centered on transportation/travel/relocation space transportation and launch services, with no diversification across other PSCs in the provided data. The average obligation per award is substantial, suggesting repeated high-value procurements within the same PSC category.

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 = 'NNK17MA01T'
    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
2016 0.00 0.00 1
2018 36,750,872.00 36.75 million 3
2019 69,085,368.00 69.09 million 4
2020 84,005,363.00 84.01 million 6
2021 421,194,493.00 421.19 million 9
2022 515,949,847.00 515.95 million 7
2023 598,499,648.00 598.50 million 11
2024 628,440,635.00 628.44 million 21
2025 675,923,897.69 675.92 million 8

Insight

Obligations under PIID NNK17MA01T were minimal in 2016, then increased steadily from 2018 through 2020 before rising sharply in 2021. Annual obligations remained above $400 million from 2021 onward, peaking at $675.92 million in 2025, indicating sustained high-value activity in the later years of the 10-year window. Award counts also increased over time, reaching 21 in 2024 before declining to 8 in 2025, suggesting the highest obligation levels were not always associated with the highest number of awards.

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.