Federal Contractor

FLEET VEHICLE SOURCE, INC. Federal Contract Obligations (Last 5 Years)

Federal procurement profile for FLEET VEHICLE SOURCE, INC. (CAGE 6VVA2, UEI CGAKREGGN9J3) covering obligations, awards, agencies, and NAICS activity over the last 5 years.

FLEET VEHICLE SOURCE, INC. recorded 46,079 award actions and $1.60 billion in obligated spending over the last 5 years, with an average action value of $34,829.59. Most activity was with the Federal Acquisition Service, and nearly all obligations were classified under NAICS 336111, Automobile Manufacturing.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the selected 5-year analysis window and may include multiple award actions across the same procurement relationships.

CAGE Code
6VVA2
UEI
CGAKREGGN9J3
Total Obligated
1.60 billion
1,604,912,817.26
Award Actions
46,079
Average Action Value
34,829.59

About FLEET VEHICLE SOURCE, INC. federal contract activity

FLEET VEHICLE SOURCE, INC. (CAGE 6VVA2, UEI CGAKREGGN9J3) recorded $1.60 billion in obligated awards across 46,079 actions over the last 5 years, for an average award value of $34,829.59. The activity profile is highly concentrated in fleet-vehicle related procurement, with most obligations flowing through a single civilian buying channel.

Agency mix and customer concentration

The Federal Acquisition Service accounted for nearly all observed activity, with $1.60 billion in obligations across 46,076 awards. The only other recorded customer was the National Institutes of Health, which obligated $578,914.26 across 3 awards, indicating minimal agency diversification.

Industry profile based on NAICS activity

The vendor’s obligations were dominated by NAICS 336111, Automobile Manufacturing, which represented $1.60 billion and 45,699 awards. NAICS 336211, Motor Vehicle Body Manufacturing, was a distant second at $5.57 million across 380 awards, reinforcing a narrow vehicle-manufacturing concentration.

Annual contract trend over the analysis window

Annual obligations were volatile but consistently high, peaking in 2025 at $458.78 million and also reaching $439.96 million in 2022. The lowest year in the period was 2024 at $150.21 million, while 2023 and 2021 remained substantial at $370.40 million and $185.56 million, respectively.

How to interpret this page

This summary is based on FPDS-observed obligations and award counts associated with CAGE 6VVA2 and UEI CGAKREGGN9J3 over the last 5 years. Totals, agency mix, NAICS mix, and annual trend figures reflect the provided analysis window and should be interpreted as reported procurement activity, not revenue.

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 = '6VVA2'
        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,604,333,903.00 1.60 billion 46,076
7529 NATIONAL INSTITUTES OF HEALTH 578,914.26 578.91 thousand 3

Insight

Over the last 5 years, FLEET VEHICLE SOURCE, INC. (CAGE 6VVA2) received $1.60 billion across 46,079 awards, with an average award value of $34.8 thousand. Obligations are highly concentrated in the Federal Acquisition Service, which accounts for $1.604 billion and 46,076 awards, or essentially all activity in this period. The only other reported customer is the National Institutes of Health, with $578.9 thousand across 3 awards, indicating very 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 = '6VVA2'
        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,599,345,097.26 1.60 billion 45,699
336211 MOTOR VEHICLE BODY MANUFACTURING 5,567,720.00 5.57 million 380

Insight

Over the last 5 years, FLEET VEHICLE SOURCE, INC. shows an extreme concentration of obligations in NAICS 336111, AUTOMOBILE MANUFACTURING, with $1.60 billion across 45,699 awards, or nearly all vendor obligated dollars and award activity. NAICS 336211, MOTOR VEHICLE BODY MANUFACTURING, is a distant secondary category at $5.57 million across 380 awards, indicating only a marginal share of total activity. Overall, the vendor’s procurement profile is overwhelmingly aligned to automobile manufacturing, with limited distribution into related vehicle body manufacturing.

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 = '6VVA2'
        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 458,779,307.00 458.78 million 16,812
2024 150,213,433.06 150.21 million 2,738
2023 370,399,862.20 370.40 million 7,726
2022 439,957,462.00 439.96 million 14,396
2021 185,562,753.00 185.56 million 4,407

Insight

Over the last 5 years, FLEET VEHICLE SOURCE, INC. received $1.60 billion across 46,079 awards, with an average award value of $34,829.59, indicating a highly transaction-heavy profile. Obligation levels were concentrated in 2022, 2023, and 2025, which together account for the majority of the period total, while 2024 was comparatively low at $150.21 million across 2,738 awards. Annual awards were highest in 2025 and 2022, suggesting both increased volume and sustained reliance on the vendor in select years rather than a steady year-over-year pattern.

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.