In the last full year, BATH IRON WORKS CORPORATION (CAGE 70876, UEI FREEMCLKFXE3) recorded $2,278,262,359.44 in obligated awards across 359 actions, for an average action value of $6,346,134.70. Navy obligations accounted for nearly all activity, and ship building and repairing under NAICS 336611 dominated the contract mix.
Federal Contractor
BATH IRON WORKS CORPORATION Federal Contract Obligations (Last Year)
BATH IRON WORKS CORPORATION is a federal contractor tied to 359 award actions and $2.28 billion in obligated awards during the last full year, almost entirely from the Department of the Navy.
Figures reflect the last full year and are based on obligated awards; agency and NAICS totals may differ slightly from the overall total due to reporting detail.
About BATH IRON WORKS CORPORATION federal contract activity
BATH IRON WORKS CORPORATION, identified by CAGE 70876 and UEI FREEMCLKFXE3, received $2.28 billion across 359 awards in the last full year, for an average award value of $6.35 million. The spending profile is highly concentrated, indicating a large-scale federal supplier relationship rather than a broad, distributed award base.
Agency mix and customer concentration
The DEPT OF THE NAVY accounted for essentially all activity, with $2.28 billion across 352 awards. The DEFENSE LOGISTICS AGENCY contributed a small residual amount of $79.51 thousand across 7 awards, suggesting Navy-led procurement dominance with limited secondary agency activity.
Industry profile based on NAICS activity
Award activity is overwhelmingly concentrated in NAICS 336611, SHIP BUILDING AND REPAIRING, which accounted for $2.28 billion and 346 awards. The remaining NAICS codes represent minor, likely ancillary purchases, with no material diversification beyond shipbuilding-related procurement.
Annual contract trend over the analysis window
The annual trend for 2025 shows $2.28 billion obligated across 359 awards, consistent with a high-volume, high-dollar procurement pattern in the analysis window. With only one year shown, the data supports a snapshot view rather than a multi-year trend assessment.
How to interpret this page
This summary is based on FPDS award records for the last full year associated with CAGE 70876 and UEI FREEMCLKFXE3. Totals reflect obligated dollars and award counts by vendor, agency, NAICS code, and year as provided in the dataset.
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 = '70876'
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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 2,278,182,847.39 | 2.28 billion | 352 |
| 97AS | DEFENSE LOGISTICS AGENCY | 79,512.05 | 79.51 thousand | 7 |
Insight
During the last full year, BATH IRON WORKS CORPORATION’s obligations were overwhelmingly concentrated with the Department of the Navy, which accounted for $2.278 billion across 352 awards. The Defense Logistics Agency represented a minimal share of activity, with $79.5 thousand across 7 awards. This indicates a highly concentrated customer base, with virtually all obligated value tied to Navy procurement.
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 = '70876'
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 |
|---|---|---|---|---|
| 336611 | SHIP BUILDING AND REPAIRING | 2,279,188,107.52 | 2.28 billion | 346 |
| 326199 | ALL OTHER PLASTICS PRODUCT MANUFACTURING | 279,372.66 | 279.37 thousand | 1 |
| 339999 | ALL OTHER MISCELLANEOUS MANUFACTURING | 36,962.40 | 36.96 thousand | 2 |
| 337127 | INSTITUTIONAL FURNITURE MANUFACTURING | 22,575.97 | 22.58 thousand | 1 |
| 326220 | RUBBER AND PLASTICS HOSES AND BELTING MANUFACTURING | 14,195.68 | 14.20 thousand | 2 |
| 326299 | ALL OTHER RUBBER PRODUCT MANUFACTURING | 13,909.80 | 13.91 thousand | 2 |
| 333998 | ALL OTHER MISCELLANEOUS GENERAL PURPOSE MACHINERY MANUFACTURING | 13,717.22 | 13.72 thousand | 1 |
| 321999 | ALL OTHER MISCELLANEOUS WOOD PRODUCT MANUFACTURING | 11,528.44 | 11.53 thousand | 1 |
| 332999 | ALL OTHER MISCELLANEOUS FABRICATED METAL PRODUCT MANUFACTURING | 10,427.47 | 10.43 thousand | 1 |
| 332919 | OTHER METAL VALVE AND PIPE FITTING MANUFACTURING | 4,209.28 | 4.21 thousand | 1 |
Insight
BATH IRON WORKS CORPORATION’s obligations in the last full year were highly concentrated in NAICS 336611, Ship Building and Repairing, which accounted for essentially all reported spending at 2.28 billion across 346 awards. The remaining NAICS categories were immaterial by comparison, with only small, isolated obligations in plastics, miscellaneous manufacturing, furniture, machinery, wood, fabricated metal, and valve/pipe fitting classifications. This pattern indicates a strongly specialized procurement profile with limited diversification outside the core shipbuilding and repair market.
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 = '70876'
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,278,262,359.44 | 2.28 billion | 359 |
Insight
In the last full year, BATH IRON WORKS CORPORATION (CAGE 70876) recorded $2.28 billion in total obligated value across 359 awards, averaging about $6.35 million per award. This indicates a highly concentrated obligation profile with substantial award value distributed across a moderate number of actions. With only one year of data in the 1-year window, no year-over-year trend can be assessed from this view.
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.