Federal Contractor

AMERICAN ORDNANCE LLC Federal Contract Obligations (Last 5 Years)

AMERICAN ORDNANCE LLC recorded 1,104 federal award actions totaling $1.52 billion over the last 5 years, led by Army obligations.

AMERICAN ORDNANCE LLC, CAGE 14912 and UEI QHL5DNL1NUK3, received $1,515,944,369.38 in federal obligations across 1,104 award actions in the last 5 years. Most of the activity came from the Department of the Army, with smaller obligations from the Department of the Navy.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual totals peak in 2023 and remain above $284 million in 2024 and $306 million in 2025, while NAICS 332993 and 561210 account for most obligated dollars.

CAGE Code
14912
UEI
QHL5DNL1NUK3
Total Obligated
1.52 billion
1,515,944,369.38
Award Actions
1,104
Average Action Value
1,373,138.01

About AMERICAN ORDNANCE LLC federal contract activity

AMERICAN ORDNANCE LLC recorded $1.52 billion in obligated awards across 1,104 actions over the last 5 years, with an average award value of $1.37 million. The vendor’s federal business is heavily concentrated with the Department of the Army, which accounts for nearly all of the observed obligation volume.

Agency mix and customer concentration

The Department of the Army obligated $1.52 billion across 1,100 awards, representing virtually the entire vendor portfolio in the analysis window. The Department of the Navy contributed a comparatively small $811.32 thousand across 4 awards, indicating limited cross-agency diversification.

Industry profile based on NAICS activity

The award profile is led by NAICS 332993, Ammunition (Except Small Arms) Manufacturing, with $1.24 billion across 260 awards, making this the core industry classification for the vendor. NAICS 561210, Facilities Support Services, is also material at $272.86 million across 838 awards, while NAICS 325920, Explosives Manufacturing, appears only marginally at $811.32 thousand across 6 awards.

Annual contract trend over the analysis window

Annual obligations peaked in 2023 at $613.07 million, then declined to $284.35 million in 2024 and rose to $306.09 million in 2025. Award volume was highest in 2022 at 312 awards, while 2023 delivered the largest dollar concentration despite fewer awards than 2022, suggesting a shift toward larger individual obligations.

How to interpret this page

This summary uses FPDS award obligations tied to CAGE 14912 and UEI QHL5DNL1NUK3 over the last 5 years. Totals, counts, and averages are based on the provided analysis window and grouped by agency, NAICS, and fiscal year without extrapolation beyond the supplied data.

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 = '14912'
        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,515,133,048.42 1.52 billion 1,100
1700 DEPT OF THE NAVY 811,320.96 811.32 thousand 4

Insight

Over the last 5 years, AMERICAN ORDNANCE LLC’s obligations are overwhelmingly concentrated with the DEPT OF THE ARMY, which accounts for $1.515 billion of the vendor’s $1.516 billion total obligated value across 1,100 of 1,104 awards. DEPT OF THE NAVY activity is minimal by comparison, with $811.3 thousand obligated across 4 awards. This indicates a highly concentrated federal customer base, with Army procurement driving essentially all observed spend for this vendor in the 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 = '14912'
        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,242,271,858.25 1.24 billion 260
561210 FACILITIES SUPPORT SERVICES 272,861,190.17 272.86 million 838
325920 EXPLOSIVES MANUFACTURING 811,320.96 811.32 thousand 6

Insight

Over the last 5 years, AMERICAN ORDNANCE LLC’s obligations under CAGE 14912 are highly concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing, which accounts for $1.24 billion across 260 awards and represents the dominant share of the vendor’s $1.52 billion total. NAICS 561210, Facilities Support Services, is the secondary line of business by obligation at $272.86 million, but it is distributed across 838 awards, indicating much smaller average award values than the core manufacturing activity. NAICS 325920, Explosives Manufacturing, is immaterial by comparison at $811.32 thousand across 6 awards.

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 = '14912'
        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 306,088,739.43 306.09 million 174
2024 284,349,792.82 284.35 million 162
2023 613,074,762.68 613.07 million 259
2022 189,730,987.37 189.73 million 312
2021 122,700,087.08 122.70 million 197

Insight

AMERICAN ORDNANCE LLC (CAGE 14912) obligated $1.52 billion across 1,104 awards over the last 5 years, with an average award value of $1.37 million. Obligations were heavily concentrated in 2023, which accounted for $613.07 million, or roughly 40% of the 5-year total; 2024 and 2025 remained elevated at $284.35 million and $306.09 million, respectively. Award volume was highest in 2022 at 312 awards, but that year generated only $189.73 million, indicating a lower average award value and a less concentrated obligation profile than 2023.

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.