Award Number

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

Federal procurement award record for agency ID 9700, award number FA880718C0009, covering the last 10 years of obligations and actions.

This page summarizes award number FA880718C0009 for agency ID 9700 over the last 10 years. It shows 221 award actions with total obligated dollars of 4.03 billion, or $4,034,010,629.97 exact.

Generated at 03/20/2026

Analysis period: Last 10 years

Dollar figures are based on the provided analysis window and may reflect obligations recorded across multiple actions.

Agency ID
9700
PIID
FA880718C0009
Type
Award
Total Obligated
4.03 billion
4,034,010,629.97
Actions
221
Average Action Value
18,253,441.76

Overview

Award number FA880718C0009 is associated with agency ID 9700 and records 221 award actions in the last 10 years. Total obligated amount is $4,034,010,629.97, which is shown as 4.03 billion in readable form. The average action value is $18,253,441.76.

How to use this page

Use this page to review the award-level obligation total and action activity for FA880718C0009 within the selected 10-year window. The figures support basic trend review, comparison with other awards, and identification of high-value award activity for agency ID 9700.

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 10 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 4,034,010,629.97 4.03 billion 209
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 12

Insight

Obligations are highly concentrated in the DEPT OF THE AIR FORCE, which accounts for 4.03 billion across 209 awards in the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only as a secondary award record holder, with 12 awards and no obligated dollars reported. This distribution indicates that funding activity under PIID FA880718C0009 is overwhelmingly associated with the Air Force, with DCMA reflecting administrative or non-obligated award presence rather than funded value.

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 10 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 4,034,010,629.97 4.03 billion 221

Insight

LOCKHEED MARTIN CORPORATION is the sole top vendor reported for this award over the 10-year window, accounting for $4.03 billion in obligated value across 221 awards. This indicates a highly concentrated vendor profile for PIID FA880718C0009, with all identified top-vendor obligations attributable to one contractor. The volume of awards suggests repeated transactional activity with the same vendor rather than a broadly distributed vendor base.

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 10 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 4,034,010,629.97 4.03 billion 221

Insight

Over the 10-year window, award FA880718C0009 is fully concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for the full $4.03 billion obligated across 221 awards, indicating a highly concentrated procurement profile with no diversification across other industries 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 = 'FA880718C0009'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 4,034,010,629.97 4.03 billion 221

Insight

Obligations for FA880718C0009 are entirely concentrated in PSC 1555, Space Vehicles. Over the 10-year window, this PSC accounts for $4.03 billion across 221 awards, indicating a highly focused procurement profile with no diversification across other PSCs in the provided data. This concentration suggests the award is principally associated with space vehicle-related requirements.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2018 125,010,340.27 125.01 million 11
2019 255,807,220.49 255.81 million 27
2020 591,293,240.67 591.29 million 25
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 for PIID FA880718C0009 increased sharply from 2018 through 2022, rising from $125.01 million across 11 awards to a peak of $946.72 million across 44 awards. After that peak, annual obligated value declined to $559.13 million in 2023 and $135.43 million in 2024, before rebounding to $587.35 million in 2025. Award counts were more volatile than obligations, ranging from 11 to 44 per year, indicating uneven annual distribution of activity rather than a steady procurement pattern.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.