Award Number

Award Number 9700 / FA880710C0001 Federal Contract Action Summary (Last 5 Years)

FPDS query page for award number FA880710C0001 under agency ID 9700, summarizing obligations and action history over the last 5 years.

This page presents procurement activity for award number FA880710C0001 across the last 5 years. The award shows 190 actions and total obligated amount of 1.02 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Financial figures are shown as reported in FPDS for the selected analysis window; exact total obligated is 1,016,200,729.45 and average action value is 5,348,424.89.

Agency ID
9700
PIID
FA880710C0001
Type
Award
Total Obligated
1.02 billion
1,016,200,729.45
Actions
190
Average Action Value
5,348,424.89

Overview

The award record for FA880710C0001 shows 190 reported actions in the last 5 years, with total obligated funds of 1,016,200,729.45. The average action value is 5,348,424.89, indicating a high-volume obligation history within the selected period.

How to use this page

Use this page to review award-level obligation totals and action frequency for agency ID 9700. It is suitable for quick screening, cross-checking FPDS-reported activity, and comparing this award against other records in the same agency or time window.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'FA880710C0001'
    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
5700 DEPT OF THE AIR FORCE 1,020,895,572.06 1.02 billion 185
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -4,694,842.61 -4.69 million 5

Insight

Obligations are highly concentrated with the Department of the Air Force, which accounts for $1.02 billion across 185 awards in the 5-year window. DCMA is a minor secondary obligor by comparison, with 5 awards totaling -$4.69 million, indicating a small net deobligation offset rather than additional funding. Overall, the award activity is overwhelmingly driven by the Air Force, with limited contribution from other agencies in this dataset.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'FA880710C0001'
        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
RAYTHEON COMPANY 5R497 1,016,200,729.45 1.02 billion 190

Insight

Over the 5-year window, obligations for PIID FA880710C0001 are fully concentrated with a single vendor, RAYTHEON COMPANY (CAGE 5R497). This vendor accounts for $1.02 billion across 190 awards, indicating a high level of dependency and a highly concentrated award distribution. With no additional vendors reflected in this section, there is no evidence of diversification in obligated spending for this award.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'FA880710C0001'
    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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 1,016,200,729.45 1.02 billion 190

Insight

Over the 5-year window, obligations for PIID FA880710C0001 are entirely concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This NAICS accounts for $1.02 billion across 190 awards, indicating a highly focused procurement pattern with no visible 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 = '9700' AND content__award__awardID__awardContractID__PIID = 'FA880710C0001'
    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
AC27 R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (COMMERCIALIZED) 1,016,200,729.45 1.02 billion 190

Insight

Over the 5-year window, award PIID FA880710C0001 is fully concentrated in PSC AC27, R&D- Defense System: Missile/Space Systems (Commercialized), with 190 actions totaling $1.02 billion obligated. This indicates a single-product/service concentration rather than a diversified PSC distribution within the award. The obligation volume and action count suggest sustained funding activity in this mission area over the period.

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 = '9700' AND content__award__awardID__awardContractID__PIID = 'FA880710C0001'
    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 219,711,693.55 219.71 million 39
2022 189,306,837.50 189.31 million 34
2023 178,155,528.25 178.16 million 33
2024 229,013,062.44 229.01 million 36
2025 200,013,607.71 200.01 million 48

Insight

Obligations for PIID FA880710C0001 were relatively stable across the 5-year window, ranging from $178.16 million in 2023 to $229.01 million in 2024. Annual award counts were also fairly consistent from 2021 through 2024, at 33 to 39 awards, before increasing to 48 awards in 2025. The pattern suggests a moderate year-to-year fluctuation in obligated dollars without a sustained upward or downward trend, with 2025 standing out for a higher number of awards despite obligations remaining near the 5-year average.

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.