Federal Contractor

AMTEC CORPORATION Federal Contract Obligations (Last 10 Years)

AMTEC CORPORATION (CAGE 03MS2, UEI Y6PYN1Q8UKY7) shows 10 years of federal contracting activity totaling $1.70 billion across 228 award actions.

Most of AMTEC CORPORATION’s federal obligations came from the DEPT OF THE ARMY, which accounted for $1.70 billion and 193 awards. Work was concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing, with a smaller share in NAICS 325920, Explosives Manufacturing.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligations varied from $70.76 million in 2022 to $512.80 million in 2024, with 2025 at $401.07 million through the reported period.

CAGE Code
03MS2
UEI
Y6PYN1Q8UKY7
Total Obligated
1.70 billion
1,697,545,645.10
Award Actions
228
Average Action Value
7,445,375.63

About AMTEC CORPORATION federal contract activity

AMTEC CORPORATION (CAGE 03MS2, UEI Y6PYN1Q8UKY7) received $1.70 billion across 228 FPDS awards over the last 10 years, for an average award value of $7.45 million. The profile is highly concentrated in defense procurement, with most obligations flowing through the Department of the Army.

Agency mix and customer concentration

The Department of the Army accounts for virtually all recorded obligations, at $1.70 billion across 193 awards, indicating a dominant single-agency relationship. The Department of the Navy represents a much smaller secondary channel at $1.94 million across 34 awards, while DCMA shows one award with no obligated value recorded.

Industry profile based on NAICS activity

Award activity is overwhelmingly concentrated in NAICS 332993, Ammunition (except Small Arms) Manufacturing, which captures $1.70 billion across 217 awards. NAICS 325920, Explosives Manufacturing, is a minor secondary category at $597,385.52 across 11 awards, reinforcing a narrow industrial focus.

Annual contract trend over the analysis window

Annual obligations have been uneven, with the largest recent totals in 2024 at $512.80 million and 2025 at $401.07 million. Earlier years in the provided window were materially lower, including $247.54 million in 2021, $70.76 million in 2022, and $137.56 million in 2023, showing volatility rather than steady growth.

How to interpret this page

This summary is based on FPDS award records associated with AMTEC CORPORATION’s CAGE code 03MS2 and UEI Y6PYN1Q8UKY7 over the last 10 years. Totals reflect obligated dollars and award counts from the provided dataset; category and trend statements are limited to the supplied agency, NAICS, and annual 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 = '03MS2'
        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
2100 DEPT OF THE ARMY 1,695,608,589.58 1.70 billion 193
1700 DEPT OF THE NAVY 1,937,055.52 1.94 million 34
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Over the last 10 years, AMTEC CORPORATION’s obligations are highly concentrated in the Department of the Army, which accounts for about $1.70 billion across 193 awards and represents nearly all reported obligated value. The Department of the Navy is a distant secondary customer at $1.94 million across 34 awards, indicating limited diversification outside the Army. DCMA appears only once with no obligated value, reinforcing the dominant Army dependency in this period.

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 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
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 1,696,948,259.58 1.70 billion 217
325920 EXPLOSIVES MANUFACTURING 597,385.52 597.39 thousand 11

Insight

Over the last 10 years, AMTEC CORPORATION’s obligations are overwhelmingly concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing, which accounts for about $1.70 billion across 217 awards. NAICS 325920, Explosives Manufacturing, represents a negligible share of activity at $597.4 thousand across 11 awards. This pattern indicates a highly focused procurement profile with limited diversification across NAICS codes.

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 10 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
2020 52,237,507.35 52.24 million 33
2019 56,473,202.40 56.47 million 25
2018 137,923,443.99 137.92 million 34
2017 81,175,488.91 81.18 million 25

Insight

AMTEC CORPORATION’s obligations over the last 10 years are highly concentrated in the most recent two fiscal years, with FY 2024 and FY 2025 totaling about $913.9 million, or more than half of the $1.70 billion obligated in the period. Prior years were materially lower and uneven, ranging from $52.2 million in FY 2020 to $247.5 million in FY 2021, indicating a pronounced upward shift in recent funding. Award volume is less concentrated than dollars, with 228 awards overall and annual counts generally in the mid-teens to mid-30s, suggesting larger average award values drove the recent obligation growth.

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.