Federal Contractor

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

FPDS vendor summary for BOEING COMPANY, THE (CAGE 88277, UEI UEGFHX6R6KJ1) covering obligations, awards, agencies, NAICS codes, and annual trends over the last 10 years.

BOEING COMPANY, THE recorded 982 award actions and $8,301,936,571.04 in total obligated dollars over the last 10 years, with an average action value of $8,454,110.56. Most obligations were with the Department of the Air Force and concentrated in NAICS 336411, Aircraft Manufacturing.

Generated at 03/21/2026

Analysis period: Last 10 years

Agency, NAICS, and annual figures may include negative obligations from deobligations or other contract adjustments.

CAGE Code
88277
UEI
UEGFHX6R6KJ1
Total Obligated
8.30 billion
8,301,936,571.04
Award Actions
982
Average Action Value
8,454,110.56

About BOEING COMPANY, THE federal contract activity

BOEING COMPANY, THE (CAGE 88277, UEI UEGFHX6R6KJ1) recorded 982 awards and $8.30 billion in obligated value over the last 10 years, with an average award size of $8.45 million. The profile is highly concentrated in a small number of large obligations rather than a broad base of small transactions.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE dominates the relationship, accounting for $8.34 billion across 880 awards and effectively driving the full-value profile. Activity from the DEFENSE LOGISTICS AGENCY and FEDERAL AVIATION ADMINISTRATION is immaterial by comparison, while DCMA shows negative obligated value, consistent with downward adjustments, deobligations, or closeout activity rather than new spending.

Industry profile based on NAICS activity

The portfolio is overwhelmingly concentrated in NAICS 336411, AIRCRAFT MANUFACTURING, which represents $8.30 billion across 918 awards and aligns with Boeing’s core business. Secondary NAICS codes are small and fragmented, including modest activity in soil preparation, training, software services, and other aircraft parts, with a negative total in 336413 indicating net reductions in that category.

Annual contract trend over the analysis window

Obligations have remained elevated in each of the last five years shown, rising from $671.31 million in 2021 to $2.55 billion in 2025 after sustained billion-dollar annual levels in 2022 through 2024. The peak in 2025 suggests renewed procurement intensity, but the series also shows year-to-year variability rather than a linear progression.

How to interpret this page

Figures are based on FPDS-observed obligations associated with the vendor identifiers provided for the last 10 years. Totals, counts, and category splits reflect obligated dollars as reported; negative values are retained because they indicate net reductions, not removed activity.

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 = '88277'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
5700 DEPT OF THE AIR FORCE 8,343,610,248.26 8.34 billion 880
97AS DEFENSE LOGISTICS AGENCY 270,744.00 270.74 thousand 4
6920 FEDERAL AVIATION ADMINISTRATION 114,000.00 114.00 thousand 2
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -42,058,421.22 -42.06 million 96

Insight

Over the last 10 years, obligations to BOEING COMPANY, THE are overwhelmingly concentrated in the Department of the Air Force, which accounts for $8.34 billion across 880 awards and effectively drives the vendor’s federal demand profile. The remaining agency activity is minimal by comparison: DLA and FAA obligated only $270.74 thousand and $114.00 thousand, respectively, while DCMA shows a net negative obligation of $42.06 million across 96 awards. This distribution indicates a highly concentrated defense workload with limited cross-agency diversification.

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 = '88277'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
336411 AIRCRAFT MANUFACTURING 8,296,593,336.06 8.30 billion 918
115112 SOIL PREPARATION, PLANTING, AND CULTIVATING 5,747,822.49 5.75 million 50
611430 PROFESSIONAL AND MANAGEMENT DEVELOPMENT TRAINING 340,784.00 340.78 thousand 6
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 250,000.00 250.00 thousand 1
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING -995,371.51 -995.37 thousand 7

Insight

Over the last 10 years, BOEING COMPANY, THE’s obligations are highly concentrated in NAICS 336411, Aircraft Manufacturing, which accounts for $8.30 billion of the $8.30 billion total and 918 of 982 awards. The remaining NAICS categories represent a very small share of activity, with the next largest, 115112, Soil Preparation, Planting, and Cultivating, totaling $5.75 million across 50 awards. Other listed NAICS codes are immaterial by comparison, and 336413, Other Aircraft Parts and Auxiliary Equipment Manufacturing, shows a negative obligated amount of $995.37 thousand across 7 awards.

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 = '88277'
        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 DESC
Year Total Obligated Readable Award Actions
2025 2,546,708,001.83 2.55 billion 199
2024 1,464,415,542.93 1.46 billion 175
2023 1,783,745,906.56 1.78 billion 131
2022 1,725,562,947.40 1.73 billion 124
2021 671,310,824.64 671.31 million 94
2020 -28,418,353.91 -28.42 million 57
2019 21,054,210.37 21.05 million 35
2018 31,554,932.47 31.55 million 76
2017 -263,487.25 -263.49 thousand 80
2016 86,266,046.00 86.27 million 11

Insight

Over the last 10 years, BOEING COMPANY, THE (CAGE 88277) received $8.30 billion across 982 awards, averaging $8.45 million per award. Obligations are heavily concentrated in the most recent five years, which account for the large majority of total dollars, with 2025 at $2.55 billion, 2023 at $1.78 billion, 2022 at $1.73 billion, and 2024 at $1.46 billion. Earlier years were materially lower, including multiple years with obligations below $100 million and two years with negative net obligations in 2017 and 2020, indicating period-over-period volatility rather than a steady annual trajectory.

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