Award Number

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

Award number FA880710C0001 records 48 award actions in the last full year, with total obligated dollars of $200,013,607.71.

This FPDS query page summarizes procurement activity for award number FA880710C0001 under agency ID 9700. In the last full year, the award shows $200.01 million obligated across 48 actions, for an average action value of $4,166,950.16.

Generated at 03/20/2026

Analysis period: Last full year

Amounts shown use the provided exact obligation total and a readable rounded value for reference.

Agency ID
9700
PIID
FA880710C0001
Type
Award
Total Obligated
200.01 million
200,013,607.71
Actions
48
Average Action Value
4,166,950.16

Overview

The award record for FA880710C0001 under agency ID 9700 shows 48 actions during the last full year. Total obligated dollars were $200,013,607.71, with an average action value of $4,166,950.16. The readable total of $200.01 million reflects the same obligation amount in rounded form.

How to use this page

Use this page to review the award-level obligation volume and action count for FA880710C0001 over the last full year. The figures can support basic trend checks, award monitoring, and comparisons against other award records in the same agency context.

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 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
5700 DEPT OF THE AIR FORCE 200,013,607.71 200.01 million 48

Insight

For PIID FA880710C0001 over the past year, obligations are concentrated entirely with DEPT OF THE AIR FORCE (Agency ID 5700), which accounts for the full $200.01 million identified in this view. The funding is distributed across 48 awards, indicating repeated obligation activity rather than a single action. This pattern suggests a concentrated agency relationship within the stated window.

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 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
RAYTHEON COMPANY 5R497 200,013,607.71 200.01 million 48

Insight

RAYTHEON COMPANY is the sole top vendor in the 1-year window for PIID FA880710C0001, accounting for $200.01 million across 48 awards. This indicates a highly concentrated obligation pattern with all visible top-vendor activity centered on a single contractor. The volume of awards relative to obligated dollars suggests multiple funding actions or task-level activity rather than a small number of large transactions.

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 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
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 200,013,607.71 200.01 million 48

Insight

Over the past 1 year, obligations under PIID FA880710C0001 are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). This category accounts for $200.01 million across 48 awards, indicating a single-NAICS funding 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 = '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 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
AC27 R&D- DEFENSE SYSTEM: MISSILE/SPACE SYSTEMS (COMMERCIALIZED) 200,013,607.71 200.01 million 48

Insight

Obligations for this award in the past year are fully concentrated in PSC AC27, R&D–Defense System: Missile/Space Systems (Commercialized), totaling $200.01 million across 48 awards/actions. This indicates a highly focused spend profile within a single PSC, with no evidence in the provided data of diversification across other product or service codes. The frequency of 48 awards/actions suggests repeated activity under the same PSC rather than isolated obligation events.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 200,013,607.71 200.01 million 48

Insight

In the 1-year window, obligations for PIID FA880710C0001 in agency 9700 are concentrated entirely in 2025, with $200.01 million obligated across 48 awards. This indicates activity is confined to a single reporting year in the provided period, limiting the ability to assess year-over-year trend within this dataset. The average obligation per award is approximately $4.2 million, suggesting a moderately distributed obligation profile across multiple actions rather than reliance on a single award.

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.