Award Number

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

Award number NAS1510000 for agency 8000 reflects 883 award actions over the last 10 years, with total obligations of $4.44 billion.

This page summarizes federal procurement activity tied to award number NAS1510000 for agency ID 8000. Across the last 10 years, the award shows $4,442,877,664.65 in total obligated value across 883 actions.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and may differ from other reports if filters or reporting methods change.

Agency ID
8000
PIID
NAS1510000
Type
Award
Total Obligated
4.44 billion
4,442,877,664.65
Actions
883
Average Action Value
5,031,571.53

Overview

The award record for NAS1510000 shows sustained activity over the last 10 years, with 883 actions recorded for agency ID 8000. Total obligated value is $4,442,877,664.65, with an average action value of $5,031,571.53. These figures describe the scale and frequency of obligation activity associated with this award number.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for NAS1510000. It is useful for comparing this award against other FPDS records, checking activity concentration over time, and supporting procurement analysis 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 = 'NAS1510000'
    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 4,442,877,664.65 4.44 billion 883

Insight

For PIID NAS1510000 over the 10-year window, all reported obligations are concentrated in a single top agency: the National Aeronautics and Space Administration. NASA accounts for $4.44 billion across 883 awards, indicating this action is heavily associated with one agency rather than broadly distributed.

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 = 'NAS1510000'
        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
BOEING COMPANY 2B945 3,881,522,045.23 3.88 billion 772
BOEING COMPANY 561,355,619.42 561.36 million 111

Insight

Award obligations under PIID NAS1510000 are highly concentrated in BOEING COMPANY, which accounts for the bulk of recorded obligations across the 10-year window. The BOEING COMPANY record with CAGE 2B945 totals 3.88 billion across 772 awards, while a second BOEING COMPANY entry with no CAGE code adds 561.36 million across 111 awards. Together, these entries indicate sustained reliance on the same vendor name, with the CAGE-coded record representing the dominant share of obligated dollars.

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 = 'NAS1510000'
    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 4,442,877,664.65 4.44 billion 883

Insight

Obligations under PIID NAS1510000 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with $4.44 billion across 883 awards over the 10-year window. This indicates a highly focused procurement profile within a single industrial sector, with no diversification across other NAICS codes reflected in the provided data. The award count suggests repeated activity within the same category rather than a broad distribution of obligations.

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 = 'NAS1510000'
    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
AR62 R&D- SPACE: STATION (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 4,442,877,664.65 4.44 billion 883

Insight

Obligations for this award are fully concentrated in PSC AR62, R&D- Space: Station (Applied Research/Exploratory Development), totaling $4.44 billion across 883 awards over the 10-year window. This indicates a highly focused spending profile with no visible diversification across other PSCs in the provided data. The volume of awards suggests sustained procurement activity within the same R&D category rather than isolated transactions.

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 = 'NAS1510000'
    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 561,355,619.42 561.36 million 106
2017 465,642,533.44 465.64 million 117
2018 582,513,887.92 582.51 million 87
2019 550,624,921.18 550.62 million 82
2020 353,301,309.15 353.30 million 107
2021 450,993,816.01 450.99 million 93
2022 325,971,479.41 325.97 million 78
2023 492,802,019.67 492.80 million 66
2024 317,533,736.16 317.53 million 70
2025 342,138,342.29 342.14 million 77

Insight

Obligations for PIID NAS1510000 under Agency 8000 are distributed across the full 10-year window, with no single year dominating the period. Annual obligated amounts peaked in 2018 at $582.51 million and were also relatively high in 2016 and 2019, while the lowest level occurred in 2024 at $317.53 million. Award counts vary within a narrower band than obligations, ranging from 66 in 2023 to 117 in 2017, indicating that year-to-year obligation changes are driven more by award value than by volume.

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.