Federal Contractor

HUNTINGTON INGALLS INCORPORATED Federal Contract Obligations (Last 5 Years)

Federal procurement profile for HUNTINGTON INGALLS INCORPORATED (CAGE 34293, UEI C3NLZNSMU254) covering awards in the last 5 years.

HUNTINGTON INGALLS INCORPORATED recorded 4,254 award actions and $17.92 billion in obligated value over the last 5 years, with an average action value of $4.21 million. Most activity was with the Department of the Navy and was concentrated in NAICS 336611, Ship Building and Repairing.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals, trends, and industry codes reflect FPDS award data for the selected 5-year window and may include negative obligations where reported.

CAGE Code
34293
UEI
C3NLZNSMU254
Total Obligated
17.92 billion
17,916,009,143.66
Award Actions
4,254
Average Action Value
4,211,567.73

About HUNTINGTON INGALLS INCORPORATED federal contract activity

HUNTINGTON INGALLS INCORPORATED (CAGE 34293, UEI C3NLZNSMU254) recorded 4,254 awards totaling $17.92 billion over the last 5 years, with an average award value of $4.21 million. The profile is highly concentrated in large-dollar federal contracting activity, indicating a predominantly prime contractor relationship with significant program-level obligations. The award volume and spend profile are consistent with a major defense shipbuilding supplier.

Agency mix and customer concentration

The award base is overwhelmingly concentrated in the DEPT OF THE NAVY, which accounts for $18.18 billion across 4,171 awards. The U.S. COAST GUARD is the only other top agency listed, with 83 awards and a net negative obligated value of $260.72 million. This mix indicates strong dependence on Navy procurement, with the Coast Guard representing a comparatively small and offsetting share of activity.

Industry profile based on NAICS activity

NAICS 336611, Ship Building and Repairing, dominates the vendor's portfolio at $17.92 billion across 4,212 awards, showing that nearly all obligation flow is tied to ship construction and repair. All other NAICS categories are immaterial by comparison, with only isolated awards in commercial building construction and moving services. Engineering Services shows a negative net obligation of $5.35 million across 40 awards, which suggests modifications, deobligations, or contract adjustments rather than a separate core business line.

Annual contract trend over the analysis window

Obligations rose sharply in 2023 to $6.00 billion after $1.56 billion in 2022, then moderated to $3.72 billion in 2024 before increasing again to $4.37 billion in 2025. Award counts stayed relatively stable between 806 and 917 per year, which indicates that changes in spend were driven more by award size than by transaction volume. The pattern reflects cyclical funding execution on a large, stable contracting base rather than broad diversification.

How to interpret this page

This summary is based on FPDS obligations and award counts for the last 5 years, grouped by vendor identifiers and reported agency and NAICS classifications. Totals may include negative values from deobligations, modifications, or other adjustments and therefore can differ from simple gross award totals. Agency, NAICS, and annual trend statements reflect the provided aggregation dataset and are not normalized beyond the reported FPDS rollups.

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 = '34293'
        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
1700 DEPT OF THE NAVY 18,176,727,541.94 18.18 billion 4,171
7008 U.S. COAST GUARD -260,718,398.28 -260.72 million 83

Insight

Over the last 5 years, Huntington Ingalls Incorporated’s obligations are highly concentrated in the Department of the Navy, which accounts for $18.18 billion across 4,171 awards. U.S. Coast Guard activity is limited to 83 awards and shows net negative obligations of $260.72 million, indicating offsets, deobligations, or downward adjustments during the period. Overall, the vendor’s top-agency profile is dominated by Navy procurement, with comparatively minimal and negative net obligation activity outside that relationship.

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 = '34293'
        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
336611 SHIP BUILDING AND REPAIRING 17,921,045,880.46 17.92 billion 4,212
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 311,320.00 311.32 thousand 1
484210 USED HOUSEHOLD AND OFFICE GOODS MOVING 4,070.00 4.07 thousand 1
541330 ENGINEERING SERVICES -5,352,126.80 -5.35 million 40

Insight

HUNTINGTON INGALLS INCORPORATED’s obligations over the last 5 years are overwhelmingly concentrated in NAICS 336611, Ship Building and Repairing, which accounts for about $17.92 billion across 4,212 awards. The remaining activity is minimal by comparison: one award each under NAICS 236220 and 484210, and 40 awards under NAICS 541330 with negative obligated value of $5.35 million, indicating limited and uneven diversification outside the core shipbuilding code. Overall, the vendor’s procurement profile is highly concentrated in its primary shipbuilding and repair business.

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 = '34293'
        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 4,372,286,500.06 4.37 billion 840
2024 3,719,176,090.43 3.72 billion 884
2023 5,998,931,618.38 6.00 billion 917
2022 1,563,830,570.36 1.56 billion 807
2021 2,261,784,364.43 2.26 billion 806

Insight

Over the last 5 years, HUNTINGTON INGALLS INCORPORATED (CAGE 34293) obligated 17.92 billion across 4,254 awards, averaging 4.21 million per award. Obligation volume is concentrated in 2023 and 2025, which together account for the largest annual totals at 6.00 billion and 4.37 billion, respectively, while 2022 is the low point at 1.56 billion. Award counts remain relatively stable year to year, ranging from 806 to 917, indicating that fluctuations in obligated dollars are driven more by award value than by award frequency.

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.