Federal Contractor

FCA US LLC Federal Contract Obligations (Last 5 Years)

FCA US LLC federal contract activity over the last 5 years shows 30,297 award actions and $1.45 billion obligated, led by the Federal Acquisition Service.

FCA US LLC, CAGE 5KAV0 and UEI GVAKTC49BNJ8, recorded $1,445,653,353.68 in obligated federal spending across 30,297 award actions in the last five years. Most obligations came from the Federal Acquisition Service, with additional activity from the National Institutes of Health and smaller, offsetting entries in a few other agencies.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals and trends reflect the provided analysis window and may include negative obligations and zero-dollar actions where recorded in FPDS data.

CAGE Code
5KAV0
UEI
GVAKTC49BNJ8
Total Obligated
1.45 billion
1,445,653,353.68
Award Actions
30,297
Average Action Value
47,716.05

About FCA US LLC federal contract activity

FCA US LLC, identified by CAGE 5KAV0 and UEI GVAKTC49BNJ8, recorded $1.45 billion in obligations across 30,297 awards over the last 5 years, with an average award value of $47,716.05. The activity profile is highly concentrated in a very large number of relatively small actions, consistent with recurring federal fleet and vehicle procurement.

Agency mix and customer concentration

The Federal Acquisition Service dominates the relationship, accounting for $1.445 billion and 30,280 awards, which represents essentially all observed obligated value. Outside of FAS, activity is limited to small-volume relationships with NIH and a handful of other agencies, including some zero- or negative-obligation entries that indicate adjustments or deobligations rather than substantive buying volume.

Industry profile based on NAICS activity

Awarding is overwhelmingly concentrated in NAICS 336111, Automobile Manufacturing, with $1.446 billion and 30,289 awards. The remaining NAICS codes are immaterial by value and include a small number of zero-obligation awards in related vehicle equipment and machinery categories, plus minor negative adjustments under transportation administration and motor vehicle wholesale codes.

Annual contract trend over the analysis window

Annual obligations were strongest in 2025 at $479.91 million, following $146.80 million in 2024 and $353.34 million in 2023. The profile shows sustained procurement activity throughout the window, with 2021 and 2022 both above $200 million, indicating a steady federal purchasing relationship rather than a one-year spike.

How to interpret this page

This summary is based on FPDS award data for the last 5 years and reflects obligated dollars and award counts associated with the vendor's CAGE code and UEI. Totals are aggregated across awards as reported in the source data; negative values represent deobligations or adjustments and are included as provided.

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 = '5KAV0'
        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,445,407,017.09 1.45 billion 30,280
7529 NATIONAL INSTITUTES OF HEALTH 261,277.43 261.28 thousand 9
1540 FEDERAL PRISON SYSTEM / BUREAU OF PRISONS 0.00 0.00 2
1900 STATE, DEPARTMENT OF -7,000.00 -7.00 thousand 1
7200 AGENCY FOR INTERNATIONAL DEVELOPMENT -7,940.84 -7.94 thousand 5

Insight

FCA US LLC’s obligations are highly concentrated in the Federal Acquisition Service, which accounts for about $1.445 billion of the vendor’s $1.446 billion in total obligated dollars over the last 5 years and 30,280 of 30,297 awards. The remaining agencies represent only marginal activity: NIH obligated $261.3 thousand across 9 awards, while BOP recorded 2 awards with no obligated dollars, and State and USAID show small negative obligations. This pattern indicates a near-exclusive reliance on FAS, with limited and immaterial activity across other 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 = '5KAV0'
        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,445,668,294.52 1.45 billion 30,289
333924 INDUSTRIAL TRUCK, TRACTOR, TRAILER, AND STACKER MACHINERY MANUFACTURING 0.00 0.00 2
336320 MOTOR VEHICLE ELECTRICAL AND ELECTRONIC EQUIPMENT MANUFACTURING 0.00 0.00 2
926120 REGULATION AND ADMINISTRATION OF TRANSPORTATION PROGRAMS -7,000.00 -7.00 thousand 1
423110 AUTOMOBILE AND OTHER MOTOR VEHICLE MERCHANT WHOLESALERS -7,940.84 -7.94 thousand 3

Insight

FCA US LLC’s FPDS activity over the last 5 years is overwhelmingly concentrated in NAICS 336111, Automobile Manufacturing, which accounts for 30,289 of 30,297 awards and about $1.45 billion of the $1.45 billion obligated. The remaining NAICS codes represent only isolated activity, with two additional manufacturing codes showing zero obligated dollars and minimal award counts. Negative obligations in NAICS 926120 and 423110 are immaterial relative to total volume and indicate minor adjustments rather than a broader diversification of spend.

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 = '5KAV0'
        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 479,908,604.69 479.91 million 11,711
2024 146,803,107.45 146.80 million 1,979
2023 353,339,632.53 353.34 million 4,298
2022 203,618,336.00 203.62 million 6,079
2021 261,983,673.01 261.98 million 6,230

Insight

FCA US LLC (CAGE 5KAV0) obligated $1.45 billion across 30,297 awards over the last 5 years, with an average award value of $47,716. Obligations are concentrated in 2025, which accounts for $479.91 million and 11,711 awards, representing the highest annual level in the period. Prior years were lower and uneven, with obligations ranging from $146.80 million to $353.34 million and award counts between 1,979 and 6,230, indicating a material increase in both obligation volume and transaction frequency in 2025.

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.