Federal Contractor

AM GENERAL LLC Federal Contract Obligations (Last Year)

AM GENERAL LLC (CAGE 0H3G6, UEI NWM1JWVDA853) received 141 federal award actions totaling $1.05 billion in the last full year, almost entirely from the Department of the Army.

In the last full year, AM GENERAL LLC recorded 141 award actions with $1,052,132,452.40 obligated, an average action value of $7,461,932.28. Contract activity was concentrated in Army procurement, led by NAICS 336212 Truck Trailer Manufacturing and NAICS 336992 Military Armored Vehicle, Tank, and Tank Component Manufacturing.

Generated at 03/21/2026

Analysis period: Last full year

NAICS and agency totals reflect obligated dollars and award counts for the analysis window; one listed NAICS category shows a small negative obligated amount.

CAGE Code
0H3G6
UEI
NWM1JWVDA853
Total Obligated
1.05 billion
1,052,132,452.40
Award Actions
141
Average Action Value
7,461,932.28

About AM GENERAL LLC federal contract activity

AM GENERAL LLC recorded 141 FPDS awards and $1.05 billion in obligated obligations during the last full year, for an average award value of about $7.46 million. Activity is concentrated in a single federal customer profile, indicating a large-volume, program-dependent vendor relationship rather than a broad, diffuse buyer base.

Agency mix and customer concentration

The DEPT OF THE ARMY accounted for the full $1.05 billion and all 141 awards in the analysis window. This makes the Army the sole material obligating agency in the observed period and suggests AM GENERAL LLC’s federal business is highly concentrated within that department.

Industry profile based on NAICS activity

Most obligations were placed under NAICS 336212, Truck Trailer Manufacturing, at $624.09 million across 63 awards, followed closely by NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing, at $428.31 million across 63 awards. NAICS 541330, Engineering Services, shows a small negative obligated amount of $275.6 thousand across 15 awards, which may reflect deobligations, adjustments, or closeout activity rather than net new spend.

Annual contract trend over the analysis window

The annual trend contains one observed year, 2025, which matches the full analysis window at $1.05 billion across 141 awards. With only a single year of data, the series supports a snapshot of current contracting volume but does not establish multi-year growth or decline.

How to interpret this page

This summary is based on FPDS award records for AM GENERAL LLC identified by CAGE 0H3G6 and UEI NWM1JWVDA853 over the last full year. Obligated dollars and award counts are summarized as reported, with NAICS and agency groupings used to identify concentration and mix; negative obligations are retained as recorded in the source 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 = '0H3G6'
        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
2100 DEPT OF THE ARMY 1,052,132,452.40 1.05 billion 141

Insight

AM GENERAL LLC’s obligations in the last full year were fully concentrated within the DEPT OF THE ARMY, which accounted for the entire $1.05 billion obligated and all 141 awards. This indicates a highly concentrated agency profile with no diversification across other agencies in the observed period. The average award value of about $7.46 million suggests a portfolio weighted toward relatively large obligations under a single department.

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 = '0H3G6'
        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
336212 TRUCK TRAILER MANUFACTURING 624,093,194.89 624.09 million 63
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 428,314,856.98 428.31 million 63
541330 ENGINEERING SERVICES -275,599.47 -275.60 thousand 15

Insight

AM GENERAL LLC’s last full year of obligations was highly concentrated in two NAICS codes: 336212 Truck Trailer Manufacturing ($624.09 million, 63 awards) and 336992 Military Armored Vehicle, Tank, and Tank Component Manufacturing ($428.31 million, 63 awards), which together account for nearly all reported obligations. These two categories are evenly distributed by award count, but 336212 represents the larger share of dollars. Engineering Services (541330) was marginal and net negative at -$275.6 thousand across 15 awards, indicating limited and offsetting activity in that category.

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 = '0H3G6'
        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 1,052,132,452.40 1.05 billion 141

Insight

AM GENERAL LLC (CAGE 0H3G6) recorded $1.05 billion in obligations across 141 awards in the last full year, averaging about $7.46 million per award. The annual trend is concentrated in a single year of observed data, so no multi-year directional pattern can be assessed from this window alone. The volume of awards alongside the high obligated value suggests a mix of transactions with moderate count but significant dollar concentration.

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.