Award Number

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

Award number FA880718C0009 for agency 9700 shows 158 award actions over the last 5 years, with total obligations of 3.06 billion dollars.

This page summarizes federal procurement activity for award number FA880718C0009 under agency ID 9700. In the last 5 years, the award recorded 158 actions and 3,061,899,828.54 dollars in total obligated amount.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts reflect the last 5 years and use the provided total obligated exact value of 3,061,899,828.54 dollars.

Agency ID
9700
PIID
FA880718C0009
Type
Award
Total Obligated
3.06 billion
3,061,899,828.54
Actions
158
Average Action Value
19,379,112.84

Overview

Award number FA880718C0009 is associated with agency ID 9700 and recorded 158 award actions during the last 5 years. The average action value is 19,379,112.84 dollars, based on the provided obligated totals and action count. Total obligated amount equals 3,061,899,828.54 dollars.

How to use this page

Use this page to review the award’s procurement activity, obligation totals, and action volume within the 5-year analysis window. The figures support basic analysis of award size and activity level without adding information beyond the provided FPDS inputs.

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 = 'FA880718C0009'
    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 3,061,899,828.54 3.06 billion 147
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 11

Insight

Over the 5-year window, obligations for PIID FA880718C0009 are highly concentrated in the DEPT OF THE AIR FORCE, which accounts for $3.06 billion across 147 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in 11 awards but with zero obligated dollars, indicating administrative activity without recorded funding under this PIID. Overall, obligated value is overwhelmingly concentrated with a single agency rather than broadly distributed.

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 = 'FA880718C0009'
        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
LOCKHEED MARTIN CORPORATION 04236 3,061,899,828.54 3.06 billion 158

Insight

Within the 5-year window for award FA880718C0009, obligations are fully concentrated with a single vendor: LOCKHEED MARTIN CORPORATION (CAGE 04236). This vendor accounts for 158 awards totaling $3.06 billion, indicating a highly concentrated vendor base for this award. The absence of additional vendors in the provided data suggests no observable distribution of obligations across other suppliers in this 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 = '9700' AND content__award__awardID__awardContractID__PIID = 'FA880718C0009'
    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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 3,061,899,828.54 3.06 billion 158

Insight

Over the 5-year window, obligations for award FA880718C0009 are fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $3.06 billion across 158 awards, indicating a highly focused procurement profile with no diversification reflected in the provided rows.

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 = 'FA880718C0009'
    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
1555 SPACE VEHICLES 3,061,899,828.54 3.06 billion 158

Insight

Obligations under PIID FA880718C0009 are fully concentrated in PSC 1555, Space Vehicles, with $3.06 billion obligated across 158 awards over the 5-year window. This indicates a highly focused procurement profile centered on a single product/service classification, with no evidence here of meaningful PSC diversification. The award count suggests the obligations are spread across multiple actions, but all within the same PSC category.

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 = 'FA880718C0009'
    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 833,281,305.17 833.28 million 34
2022 946,715,015.18 946.72 million 44
2023 559,127,212.21 559.13 million 21
2024 135,425,515.26 135.43 million 34
2025 587,350,780.72 587.35 million 25

Insight

Obligations under PIID FA880718C0009 were highest in 2022 at $946.72 million across 44 awards, following $833.28 million in 2021 across 34 awards. Funding then declined to $559.13 million in 2023 and fell sharply to $135.43 million in 2024, despite 34 awards that year, indicating a lower average obligation per award. In 2025, obligations rebounded to $587.35 million across 25 awards, but remained below the 2021–2022 peak levels.

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.