Award Number

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

FPDS analysis page for award number NAS1510000 at agency ID 8000, showing obligations and actions over the last 5 years.

This page summarizes procurement activity for award number NAS1510000 for agency ID 8000 across the last 5 years. It includes obligation totals, action count, and average action value for the period covered.

Generated at 03/20/2026

Analysis period: Last 5 years

Values are based on the provided analysis window and may reflect rounded and exact obligation figures shown separately.

Agency ID
8000
PIID
NAS1510000
Type
Award
Total Obligated
1.93 billion
1,929,439,393.54
Actions
384
Average Action Value
5,024,581.75

Overview

Over the last 5 years, award number NAS1510000 recorded 384 actions with total obligations of 1,929,439,393.54, or about 1.93 billion in readable form. The average action value was 5,024,581.75, indicating a high-value award record over the analysis window. This page is limited to the inputs provided for agency ID 8000 and the specified award number.

How to use this page

Use this page to review the scale and cadence of award activity tied to NAS1510000, including total obligated amount and action volume. The figures support basic trend and magnitude analysis, but they do not add transaction-level detail beyond the provided summary metrics.

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 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 1,929,439,393.54 1.93 billion 384

Insight

Within the 5-year window, obligations for PIID NAS1510000 are fully concentrated in the National Aeronautics and Space Administration, with $1.93 billion obligated across 384 awards. This indicates the award activity is entirely agency-specific rather than distributed across multiple agencies. The volume of awards suggests sustained use of the instrument over time within NASA.

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 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
BOEING COMPANY 2B945 1,929,439,393.54 1.93 billion 384

Insight

BOEING COMPANY is the sole top vendor identified for this award over the 5-year window, indicating complete vendor concentration in the reported top-vendor segment. The vendor accounts for $1.93 billion in total obligated value across 384 awards, suggesting sustained and repeated procurement activity rather than a small number of large transactions. This pattern reflects a highly concentrated award distribution for PIID NAS1510000 under agency 8000.

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 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 1,929,439,393.54 1.93 billion 384

Insight

Obligations under PIID NAS1510000 over the 5-year window are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This single industry accounts for $1.93 billion across 384 awards, indicating a highly concentrated 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 = 'NAS1510000'
    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
AR62 R&D- SPACE: STATION (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 1,929,439,393.54 1.93 billion 384

Insight

Obligations under PIID NAS1510000 are highly concentrated in PSC AR62, which accounts for the full 5-year total of $1.93 billion across 384 awards. This indicates a narrowly focused procurement profile centered on NASA space-station related R&D. With only one PSC reported in this window, there is no visible diversification across product or service categories.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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

For PIID NAS1510000 under agency 8000, annual obligations over the 5-year window were uneven but remained substantial, ranging from $317.53 million to $492.80 million. Obligations peaked in 2023 at $492.80 million with 66 awards, then declined in 2024 before a modest rebound in 2025 to $342.14 million across 77 awards. Award counts were comparatively stable after 2021, but the obligation pattern indicates concentration in a smaller number of higher-value awards in 2023 and lower average award value in 2024–2025.

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.