Award Number

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

Award number FA880718C0009 for Agency ID 9700 shows 25 actions and 587.35 million in obligations over the last full year.

This award page summarizes procurement activity for PIID FA880718C0009 during the last full year. The award recorded 25 actions and 587,350,780.72 in total obligated value.

Generated at 03/20/2026

Analysis period: Last full year

Figures reflect the last full year analysis window; readable totals are rounded and the exact obligated amount is provided for reference.

Agency ID
9700
PIID
FA880718C0009
Type
Award
Total Obligated
587.35 million
587,350,780.72
Actions
25
Average Action Value
23,494,031.23

Overview

The award number FA880718C0009 is associated with Agency ID 9700 and recorded 25 award actions in the last full year. Total obligated value was 587,350,780.72, with an average action value of 23,494,031.23. This provides a concise view of activity level and obligated dollars for the period.

How to use this page

Use this page to review award-level obligation history for FA880718C0009 within the selected annual window. The action count and average action value help frame the scale and pacing of activity without adding assumptions beyond the reported data.

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 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 587,350,780.72 587.35 million 22
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 3

Insight

Obligations for PIID FA880718C0009 are highly concentrated in the Department of the Air Force, which accounts for 587.35 million across 22 awards. Defense Contract Management Agency (DCMA) appears with 3 awards but no obligated dollars in the period, indicating limited monetary distribution outside the Air Force. Overall, the award activity is materially concentrated in a single agency source.

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 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
LOCKHEED MARTIN CORPORATION 04236 587,350,780.72 587.35 million 25

Insight

Within the 1-year window for PIID FA880718C0009, obligations are fully concentrated with one vendor, LOCKHEED MARTIN CORPORATION (CAGE 04236). This vendor received $587.35 million across 25 awards, indicating a high degree of award concentration and repeated obligating activity under the contract. No other vendors are listed in the provided rows, so vendor distribution is singular for 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 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 587,350,780.72 587.35 million 25

Insight

Over the past 1 year, obligations for PIID FA880718C0009 are concentrated entirely in NAICS 336414, Guided Missile and Space Vehicle Manufacturing. This NAICS accounts for $587.35 million across 25 awards, indicating a highly focused procurement profile with no diversification evident 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 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
1555 SPACE VEHICLES 587,350,780.72 587.35 million 25

Insight

Obligations in the last 1 year are fully concentrated in PSC 1555, Space Vehicles, with $587.35 million across 25 awards. This indicates a highly focused procurement profile with no visible distribution across other PSC categories in the provided data. The average obligation per award is substantial, suggesting repeated activity within the same mission area rather than broad procurement diversification.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 587,350,780.72 587.35 million 25

Insight

For PIID FA880718C0009 over the 1-year window, FY2025 obligations total $587.35 million across 25 awards. Obligations are highly concentrated in a single fiscal year within the reported period, indicating substantial procurement activity in FY2025. The award count suggests the funding was distributed across multiple actions rather than a single isolated transaction.

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.