Award Number

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

Federal procurement summary for award number FA863423F0048 under agency ID 9700 over the last 10 years.

This page summarizes the award identified by PIID FA863423F0048 for agency ID 9700 across the last 10 years. The record shows 13 award actions and total obligations of 3.93 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Obligation totals are based on the provided readable amount of 3.93 billion and exact amount of 3932715048.3.

Agency ID
9700
PIID
FA863423F0048
Type
Award
Total Obligated
3.93 billion
3,932,715,048.30
Actions
13
Average Action Value
302,516,542.18

Overview

Across the 10-year analysis window, award FA863423F0048 has 13 recorded actions and total obligations of 3.93 billion. The exact obligated total is 3932715048.3, which yields an average action value of 302516542.18. These figures provide a compact view of activity associated with this award number.

How to use this page

Use this page to review the overall scale of obligations tied to PIID FA863423F0048 and to compare the award’s action count with its total obligated value. The summary is limited to the inputs provided here and does not add contract details beyond agency ID 9700, the award number, and the stated analysis window.

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 = 'FA863423F0048'
    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 3,932,715,048.30 3.93 billion 13

Insight

Over the 10-year window for PIID FA863423F0048, all reported obligations are concentrated with the Department of the Air Force (Agency ID 5700). The award reflects $3.93 billion across 13 actions, indicating a highly concentrated funding profile with no other agencies represented in the provided rows. This pattern suggests the award has been administered entirely within a single agency channel over the period reviewed.

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 = 'FA863423F0048'
        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
BOEING COMPANY, THE 76301 3,932,715,048.30 3.93 billion 13

Insight

Obligations for PIID FA863423F0048 over the 10-year window are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). This vendor received 13 awards totaling $3.93 billion, indicating complete vendor concentration for this award record. The distribution provides no evidence of diversification across multiple vendors within the provided data.

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 = 'FA863423F0048'
    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
336411 AIRCRAFT MANUFACTURING 3,932,715,048.30 3.93 billion 13

Insight

Obligations for PIID FA863423F0048 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $3.93 billion across 13 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The concentration suggests the award activity is tied directly to aircraft manufacturing requirements.

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 = 'FA863423F0048'
    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
1510 AIRCRAFT, FIXED WING 3,932,715,048.30 3.93 billion 13

Insight

Obligations for PIID FA863423F0048 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $3.93 billion obligated across 13 awards over the 10-year window. This indicates a highly focused procurement profile with no evidence of diversification across other PSCs in the provided data. The average obligation per award is substantial, suggesting large-value aircraft-related acquisitions rather than broad, fragmented spending.

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 = 'FA863423F0048'
    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
2023 68,727,359.00 68.73 million 3
2024 2,417,721,345.30 2.42 billion 5
2025 1,446,266,344.00 1.45 billion 5

Insight

Obligations under PIID FA863423F0048 are highly concentrated in 2024 and 2025, which together account for the overwhelming share of recorded funding in the 10-year window. Annual obligations increased sharply from 68.73 million across 3 awards in 2023 to 2.42 billion across 5 awards in 2024, then remained elevated at 1.45 billion across 5 awards in 2025. The pattern indicates a significant step-up in funding level and award volume beginning in 2024, rather than a broadly distributed obligation profile across years.

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.