Federal Contractor

HUNTINGTON INGALLS INCORPORATED Federal Contract Obligations (Last 10 Years)

Federal procurement profile for HUNTINGTON INGALLS INCORPORATED (CAGE 34293, UEI C3NLZNSMU254) showing $32.04 billion in obligations across 6,905 award actions over the last 10 years.

HUNTINGTON INGALLS INCORPORATED’s FPDS record is dominated by Department of the Navy obligations, with $31.18 billion and 6,655 awards, plus $863.64 million and 250 awards from the U.S. Coast Guard. Ship Building and Repairing (NAICS 336611) accounts for nearly all reported spending at $31.97 billion, while annual obligations ranged from $1.56 billion in 2022 to $6.00 billion in 2023.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect the last 10 years of readable FPDS obligations and may include multiple award types and action values.

CAGE Code
34293
UEI
C3NLZNSMU254
Total Obligated
32.04 billion
32,041,012,351.88
Award Actions
6,905
Average Action Value
4,640,262.46

About HUNTINGTON INGALLS INCORPORATED federal contract activity

HUNTINGTON INGALLS INCORPORATED (CAGE 34293, UEI C3NLZNSMU254) recorded $32.04 billion in obligated federal awards across 6,905 actions over the last 10 years, for an average award value of $4.64 million. The profile is highly concentrated in large-scale shipbuilding and related defense work, indicating a stable, high-dollar procurement relationship rather than a broad commercial contracting base.

Agency mix and customer concentration

Obligations are overwhelmingly concentrated in the Department of the Navy, which accounts for $31.18 billion and 6,655 awards, or nearly the entire observed federal spend. The U.S. Coast Guard is the only other material awarding agency, with $863.64 million across 250 awards, confirming that the vendor’s federal business is primarily maritime and defense oriented.

Industry profile based on NAICS activity

NAICS 336611, Ship Building and Repairing, dominates the portfolio with $31.97 billion across 6,772 awards, aligning closely with the vendor’s core business. All other NAICS codes are comparatively minor: Engineering Services contributes $78.17 million across 126 awards, while the remaining categories appear as isolated, low-value outliers and do not materially change the overall contract profile.

Annual contract trend over the analysis window

Recent annual obligations show substantial year-to-year variation, with a low point of $1.56 billion in 2022 followed by a sharp rebound to $6.00 billion in 2023. Spending remained elevated in 2024 and 2025 at $3.72 billion and $4.37 billion respectively, suggesting sustained but uneven funding flows across the period.

How to interpret this page

This page summarizes FPDS obligations associated with the provided vendor identifiers over the last 10 years. Metrics reflect recorded award counts and obligated dollars by agency, NAICS code, and fiscal year; values are rounded for readability, and the analysis is limited to the supplied window and fields without external inference.

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 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
1700 DEPT OF THE NAVY 31,177,369,068.16 31.18 billion 6,655
7008 U.S. COAST GUARD 863,643,283.72 863.64 million 250

Insight

Over the last 10 years, HUNTINGTON INGALLS INCORPORATED’s obligations are highly concentrated with the DEPT OF THE NAVY, which accounts for 31.18 billion of 32.04 billion total obligated and 6,655 of 6,905 awards. U.S. COAST GUARD is a distant second at 863.64 million across 250 awards. This distribution indicates a strong reliance on Navy-related procurement activity, with comparatively limited award volume and value from other agencies in the period reviewed.

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 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
336611 SHIP BUILDING AND REPAIRING 31,965,954,186.68 31.97 billion 6,772
541330 ENGINEERING SERVICES 78,166,435.20 78.17 million 126
519190 ALL OTHER INFORMATION SERVICES 742,579.00 742.58 thousand 1
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

Insight

Over the last 10 years, HUNTINGTON INGALLS INCORPORATED’s obligations under CAGE 34293 are overwhelmingly concentrated in NAICS 336611, Ship Building and Repairing, which accounts for $31.97 billion across 6,772 awards, or nearly all of the $32.04 billion total. The next largest category, NAICS 541330 Engineering Services, is a distant secondary line of business at $78.17 million over 126 awards, indicating a highly specialized award mix. The remaining NAICS codes each represent isolated, low-dollar awards and do not materially affect the overall distribution.

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 10 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
2020 4,046,554,913.22 4.05 billion 663
2019 1,641,061,914.00 1.64 billion 656
2018 6,561,509,478.00 6.56 billion 727
2017 1,875,876,903.00 1.88 billion 603
2016 0.00 0.00 2

Insight

Over the last 10 years, HUNTINGTON INGALLS INCORPORATED has obligated $32.04 billion across 6,905 awards, averaging about $4.64 million per award. Annual obligations are uneven and concentrated in several high-value years, led by 2018 ($6.56 billion) and 2023 ($6.00 billion), with 2025 and 2024 also elevated at $4.37 billion and $3.72 billion, respectively. Lower obligation years include 2016 ($0), 2017 ($1.88 billion), 2019 ($1.64 billion), and 2022 ($1.56 billion), indicating a variable funding profile rather than steady annual spend.

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.