Award Number

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

FPDS award page for award number NNK17MA01T, showing last full year obligation activity for agency 8000.

This page summarizes obligation activity for award number NNK17MA01T during the last full year. Total obligated value was 675.92 million across 8 award actions, with an average action value of 84,490,487.21.

Generated at 03/20/2026

Analysis period: Last full year

Amounts are shown as reported in FPDS; total obligated exact is 675923897.69 and the readable value is rounded.

Agency ID
8000
PIID
NNK17MA01T
Type
Award
Total Obligated
675.92 million
675,923,897.69
Actions
8
Average Action Value
84,490,487.21

Overview

In the last full year, award number NNK17MA01T recorded 8 actions and 675,923,897.69 in total obligated value. The average action value was 84,490,487.21, indicating a small number of high-value actions over the period.

How to use this page

Use this page to review year-level obligation activity tied to award number NNK17MA01T and to compare action volume against total dollars obligated. The figures support basic analysis of spending concentration and award activity for agency 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 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 675,923,897.69 675.92 million 8

Insight

Within the 1-year window for PIID NNK17MA01T, obligations are fully concentrated in a single agency: the National Aeronautics and Space Administration, with $675.92 million across 8 awards. This indicates all observed funding activity for this award is attributable to NASA, with no cross-agency distribution in the provided data. The award count suggests the obligated amount is spread across multiple actions or modifications within the same agency relationship.

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 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 675,923,897.69 675.92 million 8

Insight

All obligated funding in the 1-year window is concentrated with SPACE EXPLORATION TECHNOLOGIES CORP. (CAGE 3BVL8), which accounts for $675.92 million across 8 awards under PIID NNK17MA01T. This indicates a highly concentrated vendor distribution with no diversification among additional vendors in the provided data. The pattern suggests the award activity for this PIID is dominated by a single supplier.

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 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 675,923,897.69 675.92 million 8

Insight

Obligations for PIID NNK17MA01T over the 1-year window are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This category accounts for $675.92 million across 8 awards, indicating a narrow industrial distribution with no diversification across other NAICS codes in the provided data. The pattern suggests this award activity is centered on a single manufacturing sector.

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 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
V126 TRANSPORTATION/TRAVEL/RELOCATION- TRANSPORTATION: SPACE TRANSPORTATION/LAUNCH 675,923,897.69 675.92 million 8

Insight

Obligations for PIID NNK17MA01T in the 1-year window are fully concentrated in PSC V126, covering space transportation/launch services, with $675.92 million across 8 awards. This indicates a highly focused procurement profile rather than a diversified PSC mix. The average obligation per award is substantial, suggesting large-value tasking within a single service 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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 675,923,897.69 675.92 million 8

Insight

Over the 1-year window, obligations for PIID NNK17MA01T are concentrated entirely in FY 2025, with $675.92 million obligated across 8 awards. This indicates a highly concentrated distribution with no year-over-year variation observable in the provided data. The average obligation per award is substantial, suggesting relatively large individual awards rather than a broad spread of smaller transactions.

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.