Federal Contractor

AMTEC CORPORATION Federal Contract Obligations (Last 5 Years)

AMTEC CORPORATION (CAGE 03MS2, UEI Y6PYN1Q8UKY7) received $1.37 billion across 111 federal award actions in the last 5 years.

AMTEC CORPORATION’s federal obligations are concentrated almost entirely with the DEPT OF THE ARMY, which accounts for $1.37 billion of the total. Most reported activity falls under NAICS 332993, Ammunition (Except Small Arms) Manufacturing, with smaller obligations in NAICS 325920, Explosives Manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

This page summarizes FPDS-observed obligations for the last 5 years and may reflect reporting, timing, or award-modification effects.

CAGE Code
03MS2
UEI
Y6PYN1Q8UKY7
Total Obligated
1.37 billion
1,369,736,002.45
Award Actions
111
Average Action Value
12,339,963.98

About AMTEC CORPORATION federal contract activity

AMTEC CORPORATION (CAGE 03MS2, UEI Y6PYN1Q8UKY7) recorded 111 federal awards and $1.37 billion in obligated obligations over the last 5 years, with an average award value of $12.34 million. The profile is highly concentrated in large-dollar procurement activity rather than broad transaction volume.

Agency mix and customer concentration

The DEPT OF THE ARMY accounts for nearly all obligations at $1.37 billion across 89 awards, making it the dominant buying agency by a wide margin. The DEPT OF THE NAVY represents a small secondary share at $1.35 million across 22 awards, indicating limited multi-agency diversification.

Industry profile based on NAICS activity

Contracting is overwhelmingly concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing, which accounts for $1.37 billion across 102 awards. NAICS 325920, Explosives Manufacturing, contributes only $583.39 thousand across 9 awards, suggesting the vendor’s federal footprint is centered on ammunition production with minimal spillover into adjacent explosives work.

Annual contract trend over the analysis window

Obligations peaked in 2024 at $512.80 million across 27 awards and remained elevated in 2025 at $401.07 million across 18 awards. Earlier years were materially lower, with 2022 at $70.76 million, 2023 at $137.56 million, and 2021 at $247.54 million, showing a recent escalation in funded activity after a softer mid-period.

How to interpret this page

This summary is based on FPDS award records for the last 5 years, using obligated dollars and award counts associated with AMTEC CORPORATION’s CAGE code and UEI. Agency, NAICS, and annual views reflect grouped obligations from the same dataset and may differ slightly due to rounding.

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 = '03MS2'
        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
2100 DEPT OF THE ARMY 1,368,386,802.93 1.37 billion 89
1700 DEPT OF THE NAVY 1,349,199.52 1.35 million 22

Insight

Over the last 5 years, AMTEC CORPORATION’s obligations are overwhelmingly concentrated at the DEPT OF THE ARMY, which accounts for $1.368 billion of the $1.370 billion total obligated and 89 of 111 awards. DEPT OF THE NAVY represents a minimal share of activity at $1.35 million across 22 awards, indicating only limited diversification outside the Army. The vendor’s average award value of $12.34 million is consistent with a portfolio dominated by large Army obligations.

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 = '03MS2'
        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
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 1,369,152,616.93 1.37 billion 102
325920 EXPLOSIVES MANUFACTURING 583,385.52 583.39 thousand 9

Insight

Over the last 5 years, AMTEC CORPORATION’s obligations are overwhelmingly concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing, which accounts for about $1.37 billion across 102 awards. NAICS 325920, Explosives Manufacturing, is a minor secondary area with $583.4 thousand across 9 awards, representing a negligible share of total obligations. This distribution indicates a highly focused procurement profile centered on ammunition manufacturing, with limited diversification into explosives-related work.

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 = '03MS2'
        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 401,072,503.60 401.07 million 18
2024 512,799,001.08 512.80 million 27
2023 137,559,686.53 137.56 million 28
2022 70,760,022.09 70.76 million 15
2021 247,544,789.15 247.54 million 23

Insight

AMTEC CORPORATION (CAGE 03MS2) obligated $1.37 billion across 111 awards over the last 5 years, averaging $12.34 million per award. Obligations are concentrated in 2024 and 2025, which together account for $913.87 million, or about 67% of the five-year total, indicating a recent increase in funding activity. Earlier years were materially lower, with the low point in 2022 at $70.76 million across 15 awards, followed by a rebound in 2023 and a sharp expansion in 2024.

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.