Federal Contractor

NORTHROP GRUMMAN SYSTEMS CORPORATION Federal Contract Obligations (Last 5 Years)

Federal procurement summary for NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 8MQW5, UEI D8QQPFNYJD63) covering the last 5 years of award activity.

Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION recorded 59 award actions totaling $11,176,654,497.19, for an average action value of $189,434,821.98. Activity was concentrated at the Department of the Air Force and in NAICS 336414, Guided Missile and Space Vehicle Manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and award actions, with annual and agency breakdowns based on obligated dollars as supplied.

CAGE Code
8MQW5
UEI
D8QQPFNYJD63
Total Obligated
11.18 billion
11,176,654,497.19
Award Actions
59
Average Action Value
189,434,821.98

About NORTHROP GRUMMAN SYSTEMS CORPORATION federal contract activity

NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 8MQW5, UEI D8QQPFNYJD63) recorded 59 FPDS awards totaling 11.18 billion over the last 5 years, with an average award value of 189.43 million. The obligation profile is heavily concentrated in a small number of large defense contracts rather than a broad base of small actions.

Agency mix and customer concentration

The Department of the Air Force is the dominant buyer, accounting for 11.17 billion across 55 awards, or essentially the full measured obligation base. The Department of the Navy contributed a much smaller 2.09 million across 3 awards, while DCMA shows one award with zero obligated dollars, indicating administrative activity rather than funded procurement in the period.

Industry profile based on NAICS activity

The vendor’s obligations are overwhelmingly classified under NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which represents 11.17 billion across 56 awards. A secondary but minimal share appears under NAICS 541330, Engineering Services, at 2.09 million across 3 awards, confirming a highly specialized aerospace and defense manufacturing profile with limited services exposure.

Annual contract trend over the analysis window

Annual obligations rose from 1.36 billion in 2021 to 1.86 billion in 2022 and 2.93 billion in 2023, then increased further to 2.99 billion in 2024 before moderating to 2.03 billion in 2025. Award counts stayed in a relatively narrow range of 9 to 13 per year, suggesting that year-to-year dollar volatility is driven more by contract size than by deal volume.

How to interpret this page

This summary is based on FPDS-observed obligations for the stated vendor identifiers over the last 5 years. Totals, award counts, agency mix, NAICS mix, and annual trend values reflect the provided analysis window and may include only reported federal procurement actions associated with the listed CAGE and UEI.

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 = '8MQW5'
        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 11,174,559,923.19 11.17 billion 55
1700 DEPT OF THE NAVY 2,094,574.00 2.09 million 3
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION received $11.18 billion across 59 awards, with obligations highly concentrated in the DEPT OF THE AIR FORCE. The Air Force accounted for $11.17 billion and 55 awards, representing nearly all vendor obligations in this period. DEPT OF THE NAVY accounted for $2.09 million across 3 awards, while DCMA had 1 award with no obligated value, indicating minimal 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 = '8MQW5'
        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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 11,174,559,923.19 11.17 billion 56
541330 ENGINEERING SERVICES 2,094,574.00 2.09 million 3

Insight

Over the last 5 years, Northrop Grumman Systems Corporation’s obligations under CAGE 8MQW5 are overwhelmingly concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounts for $11.17 billion of $11.18 billion total obligated across 56 of 59 awards. NAICS 541330, Engineering Services, is a minor secondary category at $2.09 million across 3 awards. This distribution indicates a highly concentrated award profile centered on missile and space vehicle manufacturing, with only limited diversification into engineering services.

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 = '8MQW5'
        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,033,966,279.64 2.03 billion 13
2024 2,991,855,952.31 2.99 billion 12
2023 2,926,681,444.23 2.93 billion 9
2022 1,864,851,032.18 1.86 billion 13
2021 1,359,299,788.83 1.36 billion 12

Insight

Over the last 5 years, NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 8MQW5) obligated $11.18 billion across 59 awards, averaging $189.4 million per award. Obligations were concentrated in 2023 and 2024, which together accounted for about 53.1% of the 5-year total, with the peak in 2024 at $2.99 billion. Annual obligations increased from $1.36 billion in 2021 to $1.86 billion in 2022, remained high in 2023–2024, then declined to $2.03 billion in 2025, while award counts stayed relatively stable between 9 and 13 per year.

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.