Federal Contractor

BOEING COMPANY, THE Federal Contract Obligations (Last 5 Years)

Federal procurement profile for BOEING COMPANY, THE (CAGE 82918, UEI XM8ZJ6ML9CW7) covering obligations and awards over the last 5 years.

BOEING COMPANY, THE recorded 990 award actions and $1,317,751,824.28 in obligated value during the analysis window, with an average action value of $1,331,062.44. Most obligations came from the Department of the Air Force and were concentrated in NAICS 336411 Aircraft Manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the provided 5-year FPDS analysis window and may include negative obligations from deobligations or contract adjustments.

CAGE Code
82918
UEI
XM8ZJ6ML9CW7
Total Obligated
1.32 billion
1,317,751,824.28
Award Actions
990
Average Action Value
1,331,062.44

About BOEING COMPANY, THE federal contract activity

BOEING COMPANY, THE (CAGE 82918, UEI XM8ZJ6ML9CW7) received 990 awards totaling $1.32 billion over the last 5 years, with an average award value of about $1.33 million. The funding profile is highly concentrated, indicating sustained federal use of the vendor for large aviation-related requirements.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE accounts for nearly all positive obligated value at $1.35 billion across 868 awards, making it the clear primary customer. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) shows -$33.68 million across 122 awards, which likely reflects deobligations, closeout adjustments, or other downward contract actions rather than new spend.

Industry profile based on NAICS activity

NAICS 336411, Aircraft Manufacturing, dominates the profile with $1.32 billion across 965 awards, showing that the vendor’s federal work is overwhelmingly centered on aircraft production. Smaller activity appears in NAICS 541710 with 10 awards and zero obligated value, while NAICS 336413 shows a modest negative obligated amount of $1.37 million across 15 awards.

Annual contract trend over the analysis window

Annual obligated value was highest in 2021 at $309.42 million, declined in 2022 and 2023, and then remained in the low-to-mid $200 million range in 2024 before rising to $289.18 million in 2025. Award counts stayed relatively stable at roughly 200 per year, with 2025 showing fewer awards but materially higher obligated value, suggesting larger individual actions in the most recent year.

How to interpret this page

This summary is based on FPDS-observed obligations and award counts for the last 5 years, grouped by vendor, agency, NAICS, and fiscal year. Negative obligated values are presented as recorded and may reflect deobligations or other contract adjustments rather than new funding.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '82918'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
5700 DEPT OF THE AIR FORCE 1,351,430,390.56 1.35 billion 868
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -33,678,566.28 -33.68 million 122

Insight

Over the last 5 years, BOEING COMPANY, THE received 1.32 billion across 990 awards, with an average award value of 1.33 million. Obligations are highly concentrated in the DEPT OF THE AIR FORCE, which accounts for 1.35 billion across 868 awards, indicating that most activity is driven by Air Force procurement. DCMA shows a net negative obligation of 33.68 million across 122 awards, which partially offsets the Air Force total and suggests downward adjustments or deobligations within the period.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '82918'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
336411 AIRCRAFT MANUFACTURING 1,319,124,623.05 1.32 billion 965
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES 0.00 0.00 10
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING -1,372,798.77 -1.37 million 15

Insight

Over the last 5 years, Boeing Company, The (CAGE 82918) shows a highly concentrated NAICS profile, with 336411 Aircraft Manufacturing accounting for nearly all obligated dollars at 1.32 billion across 965 awards. The remaining activity is limited to 541710, which reflects 10 awards with no obligated dollars, and 336413, which shows 15 awards but net negative obligated value of 1.37 million. This distribution indicates the vendor’s federal obligations are overwhelmingly tied to aircraft manufacturing, with only marginal activity in adjacent research and parts categories.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '82918'
        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 DESC
Year Total Obligated Readable Award Actions
2025 289,176,431.67 289.18 million 175
2024 226,750,750.22 226.75 million 204
2023 226,001,202.20 226.00 million 205
2022 266,406,947.61 266.41 million 201
2021 309,416,492.58 309.42 million 205

Insight

Over the last 5 years, BOEING COMPANY, THE (CAGE 82918) received $1.32 billion across 990 awards, averaging $1.33 million per award. Obligations were relatively concentrated and declined from $309.42 million in 2021 to $226.00 million in 2023, before increasing modestly to $226.75 million in 2024 and $289.18 million in 2025. Award volume remained fairly stable at 175 to 205 awards annually, indicating that the change in obligations was driven more by award value than by award count.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.