Federal Contractor

AM GENERAL LLC Federal Contract Obligations (Last 5 Years)

AM GENERAL LLC procurement profile for the last 5 years, showing $4.03 billion in federal obligations across 618 award actions.

AM GENERAL LLC (CAGE 0H3G6, UEI NWM1JWVDA853) received 4.03 billion in federal obligations across 618 award actions during the last 5 years. The Department of the Army accounted for all recorded obligations in this window, with activity concentrated in military armored vehicle and truck trailer manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the last 5 years of readable FPDS obligation data and may include multiple action types within each award record.

CAGE Code
0H3G6
UEI
NWM1JWVDA853
Total Obligated
4.03 billion
4,030,895,173.66
Award Actions
618
Average Action Value
6,522,484.09

About AM GENERAL LLC federal contract activity

AM GENERAL LLC recorded 4.03 billion in obligated federal awards across 618 awards over the last 5 years, for an average award value of 6.52 million. The vendor’s federal activity is concentrated in a single civilian-military customer base and reflects sustained large-dollar procurement volume rather than a broad, diffuse award profile.

Agency mix and customer concentration

All reported obligations in the analysis window came from the DEPT OF THE ARMY, which accounted for the full 4.03 billion and all 618 awards. This indicates a highly concentrated customer mix with essentially complete dependence on one agency relationship.

Industry profile based on NAICS activity

Obligations were dominated by NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing, at 2.23 billion across 352 awards, followed by NAICS 336212, Truck Trailer Manufacturing, at 1.76 billion across 152 awards. Smaller activity appeared in NAICS 541330, Engineering Services, and NAICS 336390, Other Motor Vehicle Parts Manufacturing, while NAICS 333318 was immaterial at 20 thousand. The mix indicates a core vehicle manufacturing footprint with limited supporting engineering and parts work.

Annual contract trend over the analysis window

Annual obligations rose sharply from 383.83 million in 2021 to 435.25 million in 2022, then increased to 1.04 billion in 2023 and 1.12 billion in 2024 before easing slightly to 1.05 billion in 2025. Award counts followed a similar pattern, peaking at 143 in 2024 and remaining elevated at 141 in 2025, consistent with sustained high-volume procurement activity.

How to interpret this page

This summary uses FPDS awards associated with AM GENERAL LLC, CAGE 0H3G6, and UEI NWM1JWVDA853 over the last 5 years. Obligations, award counts, and industry classifications are aggregated from the provided dataset and rounded where shown; no additional source inference or estimation was applied.

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 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 4,030,895,173.66 4.03 billion 618

Insight

AM GENERAL LLC’s federal obligations over the last 5 years total $4.03 billion across 618 awards, with an average award value of $6.52 million. All recorded obligation in this period is concentrated in the DEPT OF THE ARMY, indicating complete agency dependency in the available data. This concentration suggests the vendor’s federal portfolio is highly focused rather than diversified across 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 = '0H3G6'
        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
336992 MILITARY ARMORED VEHICLE, TANK, AND TANK COMPONENT MANUFACTURING 2,225,446,335.78 2.23 billion 352
336212 TRUCK TRAILER MANUFACTURING 1,759,327,291.15 1.76 billion 152
541330 ENGINEERING SERVICES 36,096,491.05 36.10 million 104
336390 OTHER MOTOR VEHICLE PARTS MANUFACTURING 10,005,055.68 10.01 million 6
333318 OTHER COMMERCIAL AND SERVICE INDUSTRY MACHINERY MANUFACTURING 20,000.00 20.00 thousand 1
532120 TRUCK, UTILITY TRAILER, AND RV (RECREATIONAL VEHICLE) RENTAL AND LEASING 0.00 0.00 3

Insight

AM GENERAL LLC’s obligations over the last 5 years are highly concentrated in NAICS 336992, Military Armored Vehicle, Tank, and Tank Component Manufacturing, which accounts for $2.23 billion across 352 awards, and NAICS 336212, Truck Trailer Manufacturing, which adds $1.76 billion across 152 awards. Together, these two NAICS codes represent nearly all obligated dollars in the period, indicating a very narrow concentration of procurement activity. The remaining NAICS codes are immaterial by comparison, with only modest obligations in Engineering Services and Other Motor Vehicle Parts Manufacturing and minimal or zero-dollar activity in the other categories.

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 5 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
2024 1,122,069,885.76 1.12 billion 143
2023 1,037,617,517.48 1.04 billion 103
2022 435,248,079.79 435.25 million 103
2021 383,827,238.23 383.83 million 128

Insight

AM GENERAL LLC recorded $4.03 billion in obligations across 618 awards over the last 5 years, with an average award value of $6.52 million. Obligations are heavily concentrated in the most recent three years, totaling about $3.21 billion in 2023–2025 compared with $819.08 million in 2021–2022. Annual obligations rose sharply from $383.83 million in 2021 to $435.25 million in 2022, then more than doubled in 2023 to $1.04 billion and remained above $1.05 billion in both 2024 and 2025. Award counts were comparatively stable, ranging from 103 to 143 per year, indicating that the increase in obligations was driven primarily by larger award values rather than higher award volume.

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.