Award Number

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

Award 80NM0018F0615 for agency 8000 shows 11 actions in the last full year with $116.18 million obligated.

This page summarizes federal award activity for award number 80NM0018F0615 under agency ID 8000 over the last full year. The award recorded $116,183,550 in total obligations across 11 actions, with an average action value of $10,562,140.91.

Generated at 03/20/2026

Analysis period: Last full year

Amounts reflect the provided analysis window and may differ from other reporting periods or totals.

Agency ID
8000
PIID
80NM0018F0615
Type
Award
Total Obligated
116.18 million
116,183,550.00
Actions
11
Average Action Value
10,562,140.91

Overview

The award record for 80NM0018F0615 shows 11 actions during the last full year. Total obligated amount was $116,183,550, which equals $116.18 million when rounded for readability. The average value per action was $10,562,140.91.

How to use this page

Use this page to review the award-level obligation total and action count for agency ID 8000. It provides a concise summary for comparison with other awards, filtering, or year-over-year analysis within the same reporting framework.

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 = '80NM0018F0615'
    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 116,183,550.00 116.18 million 11

Insight

Within the 1-year window for PIID 80NM0018F0615, obligations are fully concentrated in a single agency: NASA. NASA accounts for $116.18 million across 11 awards, indicating all observed activity in this view is attributable to one agency and no distribution across additional agencies is present. This concentration suggests the award record is agency-specific rather than broadly distributed across the federal procurement portfolio.

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 = '80NM0018F0615'
        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
CALIFORNIA INSTITUTE OF TECHNOLOGY 23835 116,183,550.00 116.18 million 11

Insight

All reported obligations in this 1-year window are concentrated with a single vendor, CALIFORNIA INSTITUTE OF TECHNOLOGY (CAGE 23835). The vendor accounts for $116.18 million across 11 awards, indicating a highly concentrated award distribution for PIID 80NM0018F0615. This pattern suggests limited vendor diversification within the reviewed period.

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 = '80NM0018F0615'
    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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 116,183,550.00 116.18 million 11

Insight

Obligations for PIID 80NM0018F0615 over the 1-year window are entirely concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This NAICS accounts for $116.18 million across 11 awards, indicating a fully focused spend profile rather than a diversified distribution across multiple industries.

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 = '80NM0018F0615'
    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
AR22 R&D- SPACE: SCIENCE/APPLICATIONS (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) 116,183,550.00 116.18 million 11

Insight

Obligations are fully concentrated in PSC AR22, R&D - Space: Science/Applications (Applied Research/Exploratory Development), totaling $116.18 million across 11 awards in the 1-year window. This indicates a highly focused award mix with no visible diversification across PSCs for this PIID. The distribution suggests the obligation pattern is driven entirely by space-related R&D activity.

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 = '80NM0018F0615'
    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 116,183,550.00 116.18 million 11

Insight

For award 80NM0018F0615, obligations in the 1-year window are concentrated entirely in 2025, with $116.18 million obligated across 11 awards. This indicates a relatively high-dollar, moderately distributed obligation pattern within the period rather than a broad spread across multiple years. Because only one year is represented, no year-over-year trend can be assessed from the provided data.

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.