Federal Contractor

GENERAL MOTORS LLC Federal Contract Obligations (Last 5 Years)

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

GENERAL MOTORS LLC recorded $1.376678396 billion in obligated federal awards across 30,032 actions during the last 5 years, for an average action value of $45,840.38. Federal Acquisition Service accounted for nearly all obligated dollars, and all awards in the period were classified under NAICS 336111, Automobile Manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

Amounts reflect obligated dollars in the selected 5-year analysis window and may differ slightly from readable rounded figures.

CAGE Code
3H9V6
UEI
DG8EN42LYHL6
Total Obligated
1.38 billion
1,376,678,396.24
Award Actions
30,032
Average Action Value
45,840.38

About GENERAL MOTORS LLC federal contract activity

GENERAL MOTORS LLC (CAGE 3H9V6, UEI DG8EN42LYHL6) recorded 30,032 FPDS-observed awards and $1.38 billion in total obligations over the last 5 years, for an average award value of $45,840.38. The obligation base is highly concentrated, indicating a sustained federal procurement relationship rather than a broad multi-agency footprint.

Agency mix and customer concentration

Federal Acquisition Service accounts for nearly all activity, with $1.38 billion across 30,031 awards, while the National Institutes of Health contributed a single $43.28 thousand obligation. This profile shows an overwhelmingly centralized buying pattern through FAS, with only minimal activity from other agencies.

Industry profile based on NAICS activity

All recorded obligations in the analysis window are classified under NAICS 336111, Automobile Manufacturing, totaling $1.38 billion across 30,032 awards. The NAICS profile is fully concentrated, which is consistent with a vendor whose federal business aligns directly with vehicle manufacturing and related procurement.

Annual contract trend over the analysis window

Annual obligations peaked in 2025 at $525.47 million across 11,693 awards, following $195.20 million in 2024 and $280.99 million in 2023. Earlier years were comparatively lower at $191.69 million in 2022 and $183.33 million in 2021, showing a pronounced increase in contract activity in the most recent year.

How to interpret this page

This summary is based on FPDS-observed obligations associated with GENERAL MOTORS LLC, using the provided CAGE code and UEI over the last 5 years. Totals, award counts, agency composition, NAICS classification, and annual trend figures are reported as supplied and are not adjusted for inflation, scope changes, or award lifecycle timing.

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 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
4732 FEDERAL ACQUISITION SERVICE 1,376,635,113.56 1.38 billion 30,031
7529 NATIONAL INSTITUTES OF HEALTH 43,282.68 43.28 thousand 1

Insight

Over the last 5 years, obligations to GENERAL MOTORS LLC are overwhelmingly concentrated in the Federal Acquisition Service, which accounts for $1.3766 billion of the vendor’s $1.3767 billion in total obligations and 30,031 of 30,032 awards. National Institutes of Health represents a de minimis share, with $43.3 thousand across 1 award. This pattern indicates a highly concentrated federal buying profile with limited agency diversification.

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 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
336111 AUTOMOBILE MANUFACTURING 1,376,678,396.24 1.38 billion 30,032

Insight

Over the last 5 years, GENERAL MOTORS LLC’s obligated dollars are fully concentrated in NAICS 336111, Automobile Manufacturing, with $1.38 billion obligated across 30,032 awards. This indicates a highly concentrated award profile with no diversification across other NAICS codes in the provided period. The average award value of $45,840.38 suggests the activity is driven by a high volume of relatively small obligations rather than a limited number of large 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 = '3H9V6'
        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 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

Insight

GENERAL MOTORS LLC (CAGE 3H9V6) obligated $1.38 billion across 30,032 awards over the last 5 years, with an average award value of $45.8K. Obligations are concentrated in 2025, which accounts for $525.5 million and 11,693 awards, or about 38% of total obligated dollars and 39% of award count for the period. Prior years were materially lower and relatively stable by comparison, ranging from $183.3 million to $281.0 million annually, indicating a pronounced upward shift in both funding and transaction volume in the most recent year.

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.