Federal Contractor

BOEING COMPANY, THE Federal Contract Obligations (Last Year)

Last full year federal procurement profile for BOEING COMPANY, THE (CAGE 8V613, UEI LAJJQWA1PF31) showing $2.71 billion in obligated awards across 126 actions.

In the last full year, BOEING COMPANY, THE recorded $2,712,007,018.52 in obligated federal awards across 126 actions, for an average action value of $21,523,865.22. The Department of the Army accounted for nearly all of the obligation volume, and most spending was tied to NAICS 336411 Aircraft Manufacturing.

Generated at 03/21/2026

Analysis period: Last full year

Negative and zero values appear in some agency and NAICS totals and are shown as reported in the source data.

CAGE Code
8V613
UEI
LAJJQWA1PF31
Total Obligated
2.71 billion
2,712,007,018.52
Award Actions
126
Average Action Value
21,523,865.22

About BOEING COMPANY, THE federal contract activity

BOEING COMPANY, THE (CAGE 8V613; UEI LAJJQWA1PF31) received $2.71 billion across 126 FPDS awards in the last full year, for an average award value of $21.52 million. The profile is highly concentrated, with one agency accounting for nearly all obligated dollars and most awards occurring in a narrow set of aerospace and engineering-related categories.

Agency mix and customer concentration

DEPT OF THE ARMY dominated the vendor’s funding profile, obligating $2.71 billion across 83 awards and accounting for almost all reported dollars. USSOCOM added $3.19 million across 2 awards, while DCMA and NASA show negative obligated amounts in the period, indicating deobligations or adjustments rather than new positive funding.

Industry profile based on NAICS activity

The obligation base is centered on NAICS 336411 Aircraft Manufacturing, which captured $2.70 billion across 80 awards and represents the vendor’s core federal work. Engineering Services added $29.38 million across 24 awards, while the remaining listed NAICS codes reflect smaller or negative adjustments tied to R&D and other aircraft parts and auxiliary equipment manufacturing.

Annual contract trend over the analysis window

The annual trend shows all reported activity in 2025, with $2.71 billion obligated across 126 awards. No prior-year data is present in the provided window, so the available trend supports only a single-year snapshot rather than a multi-year pattern.

How to interpret this page

This summary is based solely on the FPDS Query inputs provided for the last full year, using obligated dollars and award counts at the vendor level. Agency and NAICS mentions reflect the top reported categories in the supplied dataset, and negative values are treated as deobligations or downward adjustments rather than new obligations.

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 = '8V613'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
2100 DEPT OF THE ARMY 2,711,016,955.10 2.71 billion 83
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 3,192,783.10 3.19 million 2
97AS DEFENSE LOGISTICS AGENCY 0.00 0.00 2
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION -2,127.29 -2.13 thousand 1
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -2,200,592.39 -2.20 million 38

Insight

BOEING COMPANY, THE’s last full year obligations are highly concentrated in the Department of the Army, which accounts for $2.71 billion of the $2.71 billion total obligated across 83 awards. U.S. Special Operations Command is a distant second at $3.19 million across 2 awards, while the remaining listed agencies have negligible, zero, or negative obligated amounts. This distribution indicates that Boeing’s federal award activity in this period was driven overwhelmingly by Army procurement, with limited exposure across other agencies.

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 = '8V613'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 2,704,518,855.01 2.70 billion 80
541330 ENGINEERING SERVICES 29,381,921.92 29.38 million 24
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) -42,000.00 -42.00 thousand 1
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) -555,130.71 -555.13 thousand 13
336413 OTHER AIRCRAFT PARTS AND AUXILIARY EQUIPMENT MANUFACTURING -21,296,627.70 -21.30 million 8

Insight

BOEING COMPANY, THE (CAGE 8V613) received $2.71 billion across 126 awards in the last full year, with average award value of $21.52 million. Obligations are highly concentrated in NAICS 336411 Aircraft Manufacturing, which accounts for $2.70 billion across 80 awards and represents nearly all recorded obligations. Secondary activity is limited to NAICS 541330 Engineering Services at $29.38 million across 24 awards, while the remaining listed NAICS codes show small net negative obligations, indicating modest deobligation activity rather than material diversification.

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 = '8V613'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 2,712,007,018.52 2.71 billion 126

Insight

In the last full year, BOEING COMPANY, THE (CAGE 8V613) received $2.71 billion in obligated funding across 126 awards, for an average award value of about $21.5 million. With only one annual data point in the 1-year window, no year-over-year trend can be assessed from this view. The obligation profile indicates a high-value, moderately distributed award base rather than reliance on a small number of extremely large awards.

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