Vehicle Number

Vehicle Number 8000 / 80LARC18C0001 Federal Contract Action Summary (Last 5 Years)

Procurement analysis for vehicle number under PIID 80LARC18C0001 for Agency ID 8000 over the last 5 years.

This page summarizes federal award activity for vehicle number associated with PIID 80LARC18C0001 for Agency ID 8000. The record shows 27 award actions with total obligations of $43.34 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the last 5 years and use the provided exact obligated total of $43,337,467.

Agency ID
8000
PIID
80LARC18C0001
Type
Vehicle
Total Obligated
43.34 million
43,337,467.00
Actions
27
Average Action Value
1,605,091.37

Overview

For the last 5 years, this vehicle number has recorded 27 award actions tied to PIID 80LARC18C0001 under Agency ID 8000. Total obligated value is $43,337,467, with an average action value of $1,605,091.37. These figures provide a compact view of the award volume and spend concentration in the available record.

How to use this page

This page is intended for reviewing obligation levels and action frequency associated with the listed vehicle. The average action value helps frame the scale of individual award actions within the overall obligated amount. Use the record to compare this vehicle against other contract vehicles or procurement identifiers in the same 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 = '80LARC18C0001'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 43,337,467.00 43.34 million 27

Insight

Within the 5-year window for PIID 80LARC18C0001, all reported obligations in the top_agencies view are concentrated in a single agency: NASA, with $43.34 million across 27 awards. This indicates complete agency-level concentration in the observed rows, with no other agencies appearing in the dataset provided. The award pattern suggests repeated obligation activity within the same agency rather than broad distribution across multiple agencies.

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 = '80LARC18C0001'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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 = '80LARC18C0001'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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) 43,337,467.00 43.34 million 27

Insight

Over the 5-year window, obligations for this vehicle are entirely concentrated in NAICS 541715, with $43.34 million across 27 awards. This indicates a clear specialization in research and development in the physical, engineering, and life sciences. Because only one NAICS is present in the provided data, there is no visible diversification across industry codes in this period.

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 = '80LARC18C0001'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
AR12 SPACE R&D SERVICES; SPACE FLIGHT, RESEARCH AND SUPPORTING ACTIVITIES; APPLIED RESEARCH 43,337,467.00 43.34 million 27

Insight

Obligations for this vehicle over the 5-year window are concentrated in PSC AR12, which accounts for the full reported total of $43.34 million across 27 awards. This indicates a highly focused procurement profile centered on space R&D services and related applied research support. No additional PSCs are reflected in the provided rows, so the observed distribution is entirely concentrated in a single product or service code.

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 = '80LARC18C0001'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 11,900,000.00 11.90 million 6
2022 13,850,000.00 13.85 million 4
2023 6,362,467.00 6.36 million 5
2024 9,499,999.12 9.50 million 5
2025 1,725,000.88 1.73 million 7

Insight

Obligations on PIID 80LARC18C0001 were concentrated in 2021 through 2024, ranging from $6.36 million to $13.85 million annually, with the peak in 2022. Award counts were relatively stable over that period at 4 to 6 awards per year, indicating moderate annual activity despite funding variability. In 2025, obligations declined sharply to $1.73 million, while award count increased to 7, suggesting smaller awards or reduced funding per award in the most recent 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.