Award Number

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

Federal procurement record for award number FA881113C0003 under agency ID 9700, showing obligations and action history over the last 10 years.

This page summarizes award number FA881113C0003 for agency ID 9700 across the last 10 years. The record reflects 188 award actions and total obligations of $4.36 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals are based on the provided analysis window and may not reflect activity outside the last 10 years.

Agency ID
9700
PIID
FA881113C0003
Type
Award
Total Obligated
4.36 billion
4,360,593,497.68
Actions
188
Average Action Value
23,194,646.26

Overview

Award number FA881113C0003 is associated with agency ID 9700 and shows 188 recorded actions in the last 10 years. Total obligated dollars are $4,360,593,497.68, with an average action value of $23,194,646.26. This page provides a procurement-focused summary of the award’s activity within the stated analysis window.

How to use this page

Use this page to review the award’s obligation total, action count, and average action value in one place. It is intended for procurement analysis, record lookup, and trend review within the last 10 years.

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 = 'FA881113C0003'
    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,395,643,666.26 4.40 billion 167
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -35,050,168.58 -35.05 million 21

Insight

Obligations for PIID FA881113C0003 are concentrated overwhelmingly within the DEPT OF THE AIR FORCE, which accounts for $4.40 billion across 167 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) represents a much smaller share, with net obligations of -$35.05 million across 21 awards, indicating minor offsetting activity relative to the Air Force total. Overall, the award record is highly concentrated in one agency, with DCMA contributing only a limited negative adjustment over the 10-year 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 = 'FA881113C0003'
        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
UNITED LAUNCH SERVICES, LLC 43HC6 2,936,714,520.75 2.94 billion 142
UNITED LAUNCH SERVICES, LLC 1,423,878,976.93 1.42 billion 46

Insight

Obligations are highly concentrated with UNITED LAUNCH SERVICES, LLC, which appears in two vendor entries tied to this award. The CAGE-coded entry accounts for $2.94 billion across 142 awards, while the uncoded entry accounts for an additional $1.42 billion across 46 awards, indicating substantial repeat activity with the same vendor name. Over the 10-year window, this pattern suggests the award’s obligated value is dominated by a small number of vendor records rather than being broadly distributed.

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 = 'FA881113C0003'
    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
481212 NONSCHEDULED CHARTERED FREIGHT AIR TRANSPORTATION 4,360,593,497.68 4.36 billion 188

Insight

Obligations for this award are highly concentrated in NAICS 481212, Nonscheduled Chartered Freight Air Transportation, which accounts for the full reported total of $4.36 billion across 188 awards/actions in the 10-year window. With only one NAICS category present in the provided rows, there is no evidence of sectoral diversification in this result set. This concentration indicates that the award’s obligated activity is dominated by a single transportation-related industry classification.

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 = 'FA881113C0003'
    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
V126 TRANSPORTATION/TRAVEL/RELOCATION- TRANSPORTATION: SPACE TRANSPORTATION/LAUNCH 4,360,593,497.68 4.36 billion 188

Insight

Obligations for this award are entirely concentrated in PSC V126, Transportation/Travel/Relocation – Transportation: Space Transportation/Launch, with $4.36 billion obligated across 188 actions over the 10-year window. This indicates a highly focused spend profile tied to a single product/service category rather than a diversified procurement mix.

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 = 'FA881113C0003'
    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
2016 1,394,042,692.93 1.39 billion 40
2017 1,602,852,349.94 1.60 billion 52
2018 949,565,577.03 949.57 million 31
2019 405,620,197.90 405.62 million 25
2020 -17,811,531.13 -17.81 million 16
2021 57,958,409.78 57.96 million 13
2022 -655,000.00 -655.00 thousand 3
2023 -9,015,999.61 -9.02 million 3
2024 -10,828,317.59 -10.83 million 3
2025 -11,134,881.57 -11.13 million 2

Insight

Obligations for PIID FA881113C0003 are highly concentrated in 2016–2018, when annual outlays ranged from $949.57 million to $1.60 billion across 31–52 awards. Activity then declined sharply in 2019 and fell to comparatively low levels from 2020 onward, with annual award counts dropping to 16 or fewer. Several later years show negative net obligations, including 2020 through 2025, indicating deobligations exceeded new obligations in those periods.

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.