Federal Contractor

NATIONAL STEEL AND SHIPBUILDING COMPANY Federal Contract Obligations (Last 10 Years)

NATIONAL STEEL AND SHIPBUILDING COMPANY has 3,845 federal award actions totaling $12.69 billion over the last 10 years, led by Navy shipbuilding work.

This vendor page summarizes federal procurement activity for NATIONAL STEEL AND SHIPBUILDING COMPANY, CAGE 81220, UEI Q85KVUK3JBF5, across the last 10 years. Most obligations come from the Department of the Navy, with limited Coast Guard spending and all recorded obligations classified under NAICS 336611, Ship Building and Repairing.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect readable FPDS obligation data for the 10-year analysis window and may differ slightly from exact summed values due to rounding.

CAGE Code
81220
UEI
Q85KVUK3JBF5
Total Obligated
12.69 billion
12,686,556,188.10
Award Actions
3,845
Average Action Value
3,299,494.45

About NATIONAL STEEL AND SHIPBUILDING COMPANY federal contract activity

NATIONAL STEEL AND SHIPBUILDING COMPANY recorded $12.69 billion in obligated federal spending across 3,845 awards over the last 10 years, with an average award value of $3.30 million. The profile is large and concentrated, indicating sustained reliance on a high-volume, high-dollar contracting relationship rather than a broad small-award base.

Agency mix and customer concentration

The award base is overwhelmingly concentrated in the DEPT OF THE NAVY, which accounts for $12.68 billion and 3,838 awards, or nearly the entire analyzed total. The U.S. COAST GUARD is a minor secondary customer at $5.60 million across 7 awards, showing only limited cross-agency diversification.

Industry profile based on NAICS activity

All recorded obligations in the analysis window fall under NAICS 336611, SHIP BUILDING AND REPAIRING, which aligns directly with the vendor’s core ship construction and repair work. This indicates a fully specialized procurement profile with no meaningful diversification into adjacent NAICS categories in the captured data.

Annual contract trend over the analysis window

Annual obligations show pronounced year-to-year volatility, ranging from $370.86 million in 2021 to $2.25 billion in 2025. Spending remained above $1 billion in 2022, 2023, 2024, and 2025, with 2025 currently the high point in the provided annual series. Award counts also fluctuate materially, suggesting changing contract structure, tasking intensity, or funding timing rather than a steady linear growth pattern.

How to interpret this page

This summary is based on FPDS award data for the last 10 years, using obligations, award counts, and reported agency and NAICS classifications associated with CAGE 81220 and UEI Q85KVUK3JBF5. Totals reflect the provided analysis window and should be interpreted as obligation-based federal procurement activity, not full commercial revenue.

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 = '81220'
        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 12,680,959,567.62 12.68 billion 3,838
7008 U.S. COAST GUARD 5,596,620.48 5.60 million 7

Insight

Over the last 10 years, NATIONAL STEEL AND SHIPBUILDING COMPANY’s obligations are overwhelmingly concentrated with the DEPT OF THE NAVY, which accounts for $12.68 billion of the $12.69 billion total and 3,838 of 3,845 awards. U.S. COAST GUARD obligations are minimal by comparison at $5.60 million across 7 awards, indicating a highly concentrated customer base with limited agency diversification. The vendor’s average award value of about $3.30 million is consistent with this predominantly Navy-driven procurement profile.

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 = '81220'
        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 12,686,556,188.10 12.69 billion 3,845

Insight

Over the last 10 years, NATIONAL STEEL AND SHIPBUILDING COMPANY’s obligated dollars are fully concentrated in NAICS 336611, Ship Building and Repairing. This single-sector profile indicates that the vendor’s contract activity is highly specialized, with 12.69 billion obligated across 3,845 awards. The average award value of about $3.30 million suggests a mix of recurring, lower-value awards within the same shipbuilding and repair category.

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 = '81220'
        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 2,245,738,125.99 2.25 billion 266
2024 1,221,224,863.83 1.22 billion 235
2023 1,394,151,294.10 1.39 billion 391
2022 2,181,081,337.59 2.18 billion 314
2021 370,862,971.52 370.86 million 313
2020 1,303,913,609.03 1.30 billion 308
2019 1,290,847,853.86 1.29 billion 412
2018 2,034,802,722.68 2.03 billion 752
2017 643,933,409.50 643.93 million 854

Insight

Over the last 10 years, NATIONAL STEEL AND SHIPBUILDING COMPANY (CAGE 81220) obligated $12.69 billion across 3,845 awards, averaging about $3.30 million per award. Obligation volume is concentrated in several high-value years, led by 2025 ($2.25 billion), 2022 ($2.18 billion), and 2018 ($2.03 billion), while 2021 is a pronounced low point at $370.86 million despite 313 awards. Award counts are more dispersed and do not track obligations proportionally, with the highest count in 2017 (854 awards) corresponding to a comparatively lower $643.93 million in obligations.

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.