Federal Contractor

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

BOEING COMPANY, THE (CAGE 88277, UEI UEGFHX6R6KJ1) received 723 award actions worth 8.19 billion in federal obligations over the last 5 years.

Federal procurement records show BOEING COMPANY, THE is concentrated in Department of the Air Force contracting, with most obligations classified under Aircraft Manufacturing. Annual obligations ranged from 671.31 million in 2021 to 2.55 billion in 2025.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the last 5 years of FPDS-observed awards and may include negative obligations on some actions, such as DCMA records.

CAGE Code
88277
UEI
UEGFHX6R6KJ1
Total Obligated
8.19 billion
8,191,743,223.36
Award Actions
723
Average Action Value
11,330,211.92

About BOEING COMPANY, THE federal contract activity

BOEING COMPANY, THE (CAGE 88277, UEI UEGFHX6R6KJ1) recorded 723 awards totaling $8.19 billion over the last 5 years, with an average award value of $11.33 million. The profile is dominated by large-dollar federal obligations rather than a broad spread of small transactions, indicating a concentrated contract base.

Agency mix and customer concentration

The DEPT OF THE AIR FORCE accounts for nearly all obligated value at $8.21 billion across 687 awards, making it the clear primary customer relationship in this period. FAA activity is immaterial by value at $114.0 thousand across 2 awards, while DCMA shows a negative obligated total of $19.58 million across 34 awards, which may reflect deobligations, corrections, or closeout adjustments rather than new funding.

Industry profile based on NAICS activity

NAICS 336411, Aircraft Manufacturing, overwhelmingly drives the vendor’s portfolio at $8.19 billion and 713 awards, which is consistent with Boeing’s core business. The remaining obligated value is distributed across a small number of secondary classifications, including professional and management development training, custom computer programming services, and other aircraft parts manufacturing, with one zero-dollar award reported under soil preparation, planting, and cultivating.

Annual contract trend over the analysis window

Annual obligations peaked in 2025 at $2.55 billion, following $1.46 billion in 2024 and $1.78 billion in 2023. The series shows sustained multi-billion-dollar activity in 2022 through 2025, with 2021 notably lower at $671.31 million, suggesting a step-up in funding intensity after 2021.

How to interpret this page

This summary is based on FPDS obligations tied to BOEING COMPANY, THE using the supplied CAGE code 88277 and UEI UEGFHX6R6KJ1 over the last 5 years. Totals, award counts, and annual/agency/NAICS breakdowns reflect the provided dataset and should be interpreted as obligated dollars, not necessarily outlays or final contract value.

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 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 8,211,209,326.59 8.21 billion 687
6920 FEDERAL AVIATION ADMINISTRATION 114,000.00 114.00 thousand 2
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -19,580,103.23 -19.58 million 34

Insight

Over the last 5 years, BOEING COMPANY, THE has obligated $8.19 billion across 723 awards, with activity highly concentrated at the Department of the Air Force. The Air Force accounts for $8.21 billion across 687 awards, indicating that nearly all vendor obligations in this window are tied to that single agency. Federal Aviation Administration obligations are minimal at $114,000 across 2 awards, while DCMA shows a net negative obligation of $19.58 million across 34 awards, suggesting downward adjustment activity rather than new funding volume.

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 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 8,191,038,439.36 8.19 billion 713
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 114,000.00 114.00 thousand 2
115112 SOIL PREPARATION, PLANTING, AND CULTIVATING 0.00 0.00 1

Insight

Over the last 5 years, BOEING COMPANY, THE (CAGE 88277) received $8.19 billion across 723 awards, with activity overwhelmingly concentrated in NAICS 336411, Aircraft Manufacturing. That single NAICS accounts for $8.19 billion and 713 awards, indicating a highly focused procurement profile tied to aircraft manufacturing. The remaining NAICS codes are immaterial by comparison, with only minor obligations in training, computer programming, and aircraft parts, plus one zero-dollar award in soil preparation, planting, and cultivating.

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 5 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

Insight

Over the last 5 years, BOEING COMPANY, THE (CAGE 88277) received $8.19 billion across 723 awards, averaging $11.33 million per award. Obligations were concentrated in the most recent year, with 2025 totaling $2.55 billion and representing the largest annual amount in the period. Earlier years were lower and fairly stable from 2022 to 2024 at roughly $1.46 billion to $1.78 billion annually, following a smaller base in 2021 of $671.31 million. Award volume also increased over time, rising from 94 awards in 2021 to 199 in 2025, indicating both higher funding and greater procurement activity in the most recent periods.

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.