Federal Contractor

GENERAL MOTORS LLC Federal Contract Obligations (Last 10 Years)

Federal procurement profile for GENERAL MOTORS LLC (CAGE 3H9V6, UEI DG8EN42LYHL6) covering obligations, awards, agencies, and NAICS activity over the last 10 years.

GENERAL MOTORS LLC recorded 55,369 award actions with total obligations of $2,519,364,150.11 across the last 10 years. Most activity was through the Federal Acquisition Service and was concentrated in NAICS 336111, Automobile Manufacturing.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual trend and agency totals reflect FPDS-observed obligations within the analysis window and may differ from broader contract or corporate reporting.

CAGE Code
3H9V6
UEI
DG8EN42LYHL6
Total Obligated
2.52 billion
2,519,364,150.11
Award Actions
55,369
Average Action Value
45,501.34

About GENERAL MOTORS LLC federal contract activity

GENERAL MOTORS LLC (CAGE 3H9V6, UEI DG8EN42LYHL6) recorded 55,369 FPDS awards and $2.52 billion in obligated federal spending over the last 10 years, with an average award value of $45,501.34. The award profile is heavily concentrated, indicating a high-volume relationship rather than a broad multi-agency contract footprint.

Agency mix and customer concentration

Federal Acquisition Service accounts for virtually all activity, with $2.52 billion and 55,337 awards, making it the dominant obligating agency by a wide margin. The remaining agencies contribute only marginally, led by the National Institutes of Health at $914,894.06 across 23 awards, with smaller traces from FAA, State, and Veterans Affairs.

Industry profile based on NAICS activity

The vendor’s federal activity is overwhelmingly classified under NAICS 336111, Automobile Manufacturing, which accounts for $2.52 billion across 55,365 awards. NAICS 336211, Motor Vehicle Body Manufacturing, appears only as a minor secondary category with $80,896 across 4 awards, confirming a narrowly focused industrial profile.

Annual contract trend over the analysis window

Annual obligations remain substantial throughout the period shown, peaking in 2025 at $525.47 million across 11,693 awards. Earlier years shown are materially lower but still significant, including $280.99 million in 2023 and $191.69 million in 2022, indicating sustained procurement demand rather than a one-time spike.

How to interpret this page

This summary uses FPDS-observed awards tied to GENERAL MOTORS LLC over the last 10 years and reflects obligated dollars, not contract ceiling values or projected spend. Agency, NAICS, and annual trend sections are derived from the provided aggregates and should be interpreted as concentration indicators within the analyzed FPDS dataset.

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 = '3H9V6'
        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
4732 FEDERAL ACQUISITION SERVICE 2,517,954,464.61 2.52 billion 55,337
7529 NATIONAL INSTITUTES OF HEALTH 914,894.06 914.89 thousand 23
6920 FEDERAL AVIATION ADMINISTRATION 251,052.67 251.05 thousand 1
1900 STATE, DEPARTMENT OF 140,857.63 140.86 thousand 6
3600 VETERANS AFFAIRS, DEPARTMENT OF 94,998.72 95.00 thousand 1
1700 DEPT OF THE NAVY 7,882.42 7.88 thousand 1

Insight

GENERAL MOTORS LLC’s obligations over the last 10 years are highly concentrated in the Federal Acquisition Service, which accounts for approximately $2.52 billion of the $2.52 billion total and 55,337 of 55,369 awards. Other agencies represent only a small share of activity, led by the National Institutes of Health at $914.89 thousand across 23 awards, with the remaining agencies each below $251.05 thousand and six awards. This distribution indicates a largely centralized procurement relationship with limited activity spread across other civilian 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 = '3H9V6'
        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
336111 AUTOMOBILE MANUFACTURING 2,519,283,254.11 2.52 billion 55,365
336211 MOTOR VEHICLE BODY MANUFACTURING 80,896.00 80.90 thousand 4

Insight

Over the last 10 years, GENERAL MOTORS LLC’s obligations under CAGE 3H9V6 are overwhelmingly concentrated in NAICS 336111, Automobile Manufacturing, which accounts for $2.52 billion across 55,365 awards. This represents nearly all recorded obligation value and award activity for the period. NAICS 336211, Motor Vehicle Body Manufacturing, is a minor secondary category with only $80.90 thousand across 4 awards, indicating limited diversification beyond the primary manufacturing code.

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 = '3H9V6'
        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 525,467,302.56 525.47 million 11,693
2024 195,203,606.00 195.20 million 4,009
2023 280,987,346.00 280.99 million 5,201
2022 191,690,870.00 191.69 million 4,772
2021 183,329,271.68 183.33 million 4,357
2020 177,565,946.72 177.57 million 5,136
2019 251,249,416.00 251.25 million 5,477
2018 311,473,358.46 311.47 million 5,390
2017 369,295,903.69 369.30 million 8,476
2016 33,101,129.00 33.10 million 858

Insight

GENERAL MOTORS LLC (CAGE 3H9V6) shows a 10-year obligation total of $2.52 billion across 55,369 awards, with an average award value of $45,501.34. Obligations are concentrated in the most recent years, led by FY 2025 at $525.47 million and FY 2024 at $195.20 million, after a higher but still elevated FY 2017 peak of $369.30 million. Activity is comparatively lower in FY 2016 at $33.10 million, indicating significant year-to-year variability rather than a steady upward trajectory.

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.