Vehicle Number

Vehicle Number 8000 / 80ARC020D0010 Federal Contract Action Summary (Last 10 Years)

Federal procurement page for vehicle number 80ARC020D0010 at agency 8000, summarizing awards over the last 10 years.

This page covers vehicle number 80ARC020D0010 for agency 8000 across the last 10 years. The record shows 82 award actions with total obligated spending of 173.56 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals are based on the provided FPDS analysis window and may reflect rounding differences between readable and exact amounts.

Agency ID
8000
PIID
80ARC020D0010
Type
Vehicle
Total Obligated
173.56 million
173,560,294.75
Actions
82
Average Action Value
2,116,588.96

Overview

Over the last 10 years, vehicle number 80ARC020D0010 at agency 8000 is associated with 82 award actions and total obligated spending of 173,560,294.75. The average action value is 2,116,588.96, based on the provided award action count and obligated total.

How to use this page

This page is intended for reviewing the procurement history tied to vehicle number 80ARC020D0010 in the FPDS query context. Use it to compare obligated totals, action volume, and average action value within the stated analysis window.

Top Agencies

SELECT
    content__IDV__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__IDV__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = '80ARC020D0010'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__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 173,560,294.75 173.56 million 82

Insight

Within the 10-year window for vehicle PIID 80ARC020D0010, all reported obligation is concentrated in a single agency: the National Aeronautics and Space Administration. NASA accounts for $173.56 million across 82 awards, indicating exclusive agency-level distribution in the provided data. This concentration suggests the vehicle has been used entirely within one agency rather than across a broader federal customer base.

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__IDV__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = '80ARC020D0010'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions

Insight

No vendor concentration was available for this analysis window.

Top NAICS

SELECT
    content__IDV__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__IDV__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = '80ARC020D0010'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 173,560,294.75 173.56 million 82

Insight

Obligations under this vehicle are concentrated entirely in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). Across the 10-year window, this NAICS accounts for $173.56 million over 82 awards, indicating sustained use of the vehicle for a single research and development mission area. The absence of additional NAICS rows suggests no meaningful distribution across other industry categories in the provided data.

Top PSC Codes

SELECT
    content__IDV__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__IDV__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = '80ARC020D0010'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
AR11 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH 153,546,036.50 153.55 million 71
AR11 R&D- SPACE: AERONAUTICS/SPACE TECHNOLOGY (BASIC RESEARCH) 20,014,258.25 20.01 million 11

Insight

Obligations under PIID 80ARC020D0010 over the 10-year window are concentrated in PSC AR11, with two AR11 descriptions accounting for all listed obligations. The largest line item, “SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; BASIC RESEARCH,” totals $153.55 million across 71 awards and represents the dominant share of obligated value. A second AR11 description, “R&D- SPACE: AERONAUTICS/SPACE TECHNOLOGY (BASIC RESEARCH),” adds $20.01 million across 11 awards, indicating a smaller but still material continuation of the same research-oriented procurement pattern.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate)) AS year,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '8000' AND content__IDV__contractID__IDVID__PIID = '80ARC020D0010'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2020 21,936,938.66 21.94 million 13
2021 22,191,555.55 22.19 million 15
2022 31,254,366.26 31.25 million 14
2023 29,181,514.87 29.18 million 15
2024 33,549,647.49 33.55 million 14
2025 35,446,271.92 35.45 million 11

Insight

Obligations for PIID 80ARC020D0010 were consistently active across 2020–2025, ranging from $21.94 million to $35.45 million annually. Funding increased materially after 2021, with a step-up in 2022, a modest dip in 2023, and new highs in 2024 and 2025. Award counts remained relatively stable at 11–15 per year, indicating that the higher obligations were not driven by a large expansion in the 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.