Federal Contractor

AMERICAN ORDNANCE LLC Federal Contract Obligations (Last 10 Years)

AMERICAN ORDNANCE LLC has received 2.56 billion in federal obligations across 2,140 award actions over the last 10 years, led by Department of the Army procurement.

Federal award activity for AMERICAN ORDNANCE LLC (CAGE 14912, UEI QHL5DNL1NUK3) is concentrated in Army contracts, with 2.56 billion obligated across 2,123 Army actions. The vendor’s largest NAICS categories are ammunition (except small arms) manufacturing and facilities support services, and annual obligations have ranged from 122.70 million in 2021 to 613.07 million in 2023.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect the last 10 years of readable FPDS award data and may include multiple action types tied to the same awards.

CAGE Code
14912
UEI
QHL5DNL1NUK3
Total Obligated
2.56 billion
2,561,788,859.06
Award Actions
2,140
Average Action Value
1,197,097.59

About AMERICAN ORDNANCE LLC federal contract activity

AMERICAN ORDNANCE LLC recorded 2.56 billion in obligations across 2,140 awards over the last 10 years, with an average award value of 1.20 million. The vendor’s spend profile is highly concentrated in federal defense procurement, led overwhelmingly by the Department of the Army.

Agency mix and customer concentration

The Department of the Army accounted for 2.559 billion of the vendor’s 2.562 billion total obligated, representing 2,123 of 2,140 awards. The Department of the Navy and Department of the Air Force were secondary customers but contributed only 2.69 million and 32.92 thousand, respectively, indicating a very narrow agency base.

Industry profile based on NAICS activity

The largest share of obligations falls under NAICS 332993, Ammunition (Except Small Arms) Manufacturing, at 2.06 billion across 441 awards. Facilities Support Services under NAICS 561210 is the second-largest category by dollar value at 497.47 million and the largest by award count at 1,676, while explosives manufacturing is a distant third at 3.58 million.

Annual contract trend over the analysis window

Obligations were elevated in 2023 at 613.07 million, then declined to 189.73 million in 2022 and 122.70 million in 2021; the partial sequence provided shows a rebound to 284.35 million in 2024 and 306.09 million in 2025. The annual pattern suggests variability tied to program timing rather than a steady growth trajectory.

How to interpret this page

This summary uses FPDS obligations and award counts for the last 10 years, grouped by contracting agency, NAICS code, and fiscal year. Values are based on cumulative obligated dollars and award counts in the provided analysis window; no additional sources or assumptions were used.

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 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 2,559,067,000.44 2.56 billion 2,123
1700 DEPT OF THE NAVY 2,688,935.62 2.69 million 14
5700 DEPT OF THE AIR FORCE 32,923.00 32.92 thousand 3

Insight

Over the last 10 years, AMERICAN ORDNANCE LLC’s obligations are highly concentrated in the DEPT OF THE ARMY, which accounts for approximately 2.56 billion of the 2.56 billion total and 2,123 of 2,140 awards. The DEPT OF THE NAVY is a distant second at 2.69 million across 14 awards, while the DEPT OF THE AIR FORCE accounts for 32.92 thousand across 3 awards. This distribution indicates a very strong dependence on Army procurement activity, with minimal obligations across other top agencies.

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 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 2,060,690,153.26 2.06 billion 441
561210 FACILITIES SUPPORT SERVICES 497,474,087.92 497.47 million 1,676
325920 EXPLOSIVES MANUFACTURING 3,584,506.88 3.58 million 21
311111 DOG AND CAT FOOD MANUFACTURING 40,111.00 40.11 thousand 2

Insight

Over the last 10 years, AMERICAN ORDNANCE LLC has received 2.56 billion across 2,140 awards, with obligations highly concentrated in NAICS 332993, Ammunition (Except Small Arms) Manufacturing, which accounts for 2.06 billion and 441 awards. NAICS 561210, Facilities Support Services, represents a secondary but substantial share at 497.47 million across 1,676 awards, indicating a high volume of smaller support-related actions relative to the core manufacturing line of business. The remaining NAICS codes, 325920 and 311111, are immaterial in dollar terms, together totaling less than 4 million, which reinforces a narrow concentration in ammunition manufacturing and related support services.

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 10 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
2020 220,575,766.24 220.58 million 254
2019 324,699,077.82 324.70 million 309
2018 302,984,896.11 302.98 million 257
2017 197,584,749.51 197.58 million 213
2016 0.00 0.00 3

Insight

AMERICAN ORDNANCE LLC has received 2.56 billion across 2,140 awards over the last 10 years, with annual obligations showing notable volatility rather than a steady trend. Obligations peaked in 2023 at 613.07 million, then remained elevated in 2024 and 2025 at 284.35 million and 306.09 million, respectively, after a lower period in 2021–2022. Award volume was highest in 2022 and 2019, while 2016 recorded only 3 awards and no obligated dollars, indicating limited activity at the start of the period.

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.