Award Number

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

Federal procurement profile for award number NNK17MA01T under agency ID 8000, showing obligated amounts and award activity over the last 5 years.

This page summarizes award number NNK17MA01T for agency ID 8000 across the last 5 years. The record shows 56 award actions with total obligated value of 2.84 billion and an average action value of 50.71 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Values are based on the provided analysis window and the total obligated exact amount of 2840008520.69.

Agency ID
8000
PIID
NNK17MA01T
Type
Award
Total Obligated
2.84 billion
2,840,008,520.69
Actions
56
Average Action Value
50,714,437.87

Overview

Award number NNK17MA01T is associated with agency ID 8000 and reflects procurement activity within the last 5 years. The record includes 56 award actions and total obligated funding of 2,840,008,520.69, with an average action value of 50,714,437.87. These figures provide a concise view of funding volume and action frequency for this award.

How to use this page

Use this page to review the scale of obligations tied to award number NNK17MA01T and to compare activity across the analysis window. The action count and obligated totals can help users assess how frequently the award changed and how much funding was obligated overall.

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 5 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 2,840,008,520.69 2.84 billion 56

Insight

Over the 5-year window, obligations for PIID NNK17MA01T are fully concentrated within the National Aeronautics and Space Administration, which accounts for the entire reported amount of $2.84 billion. The award activity is also limited to 56 awards under a single agency, indicating a highly concentrated funding profile rather than a broadly distributed obligation base. This pattern suggests the award is tightly tied to NASA program execution over the 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 = '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 5 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 2,840,008,520.69 2.84 billion 56

Insight

All reported obligations in the 5-year window are concentrated with SPACE EXPLORATION TECHNOLOGIES CORP. (CAGE 3BVL8), which received $2.84 billion across 56 awards under PIID NNK17MA01T. This indicates a highly concentrated vendor profile for the award, with no other vendors represented in the provided data. The distribution suggests sustained reliance on a single contractor rather than a diversified vendor base.

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 5 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 2,840,008,520.69 2.84 billion 56

Insight

For award NNK17MA01T over the 5-year window, obligations are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This category accounts for $2.84 billion across 56 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data.

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 5 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 2,840,008,520.69 2.84 billion 56

Insight

Obligations for PIID NNK17MA01T are fully concentrated in PSC V126, Transportation/Travel/Relocation – Transportation: Space Transportation/Launch, totaling $2.84 billion across 56 awards over the 5-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The award count suggests repeated use of the same PSC for this requirement, consistent with a sustained space launch transportation activity.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 for PIID NNK17MA01T increased from 421.19 million in 2021 to 675.92 million in 2025, an overall upward trend across the five-year window. The largest annual increase occurred between 2021 and 2022, with continued growth through 2024 before a further rise in 2025. Award activity was uneven, ranging from 7 to 21 awards per year, with the highest award count in 2024, indicating that the growth in obligated value was not driven by a consistently higher number of awards each 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.