Federal Contractor

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

FLEET VEHICLE SOURCE, INC. (CAGE 6VVA2, UEI CGAKREGGN9J3) shows 10 years of federal procurement activity totaling $1.93 billion across 55,419 award actions.

Over the last 10 years, FLEET VEHICLE SOURCE, INC. has received 55,419 award actions with total obligated dollars of $1,928,942,940.26 and an average action value of $34,806.52. Most of this activity came through the Federal Acquisition Service, with smaller obligations from the National Institutes of Health.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect the last 10 years of readable FPDS data and are grouped by agency, NAICS, and fiscal year.

CAGE Code
6VVA2
UEI
CGAKREGGN9J3
Total Obligated
1.93 billion
1,928,942,940.26
Award Actions
55,419
Average Action Value
34,806.52

About FLEET VEHICLE SOURCE, INC. federal contract activity

FLEET VEHICLE SOURCE, INC. (CAGE 6VVA2, UEI CGAKREGGN9J3) shows $1.93 billion in obligated federal spending across 55,419 awards over the last 10 years, for an average award value of $34,806.52. The profile is highly transaction-heavy, indicating extensive use in recurring procurement activity rather than a small number of large actions.

Agency mix and customer concentration

Obligation is overwhelmingly concentrated in the FEDERAL ACQUISITION SERVICE, which accounts for $1.93 billion and 55,416 of 55,419 awards. The only other listed buying activity comes from the NATIONAL INSTITUTES OF HEALTH at $578,914.26 across 3 awards, making the agency mix extremely concentrated and GSA-driven.

Industry profile based on NAICS activity

The spending base is dominated by NAICS 336111, AUTOMOBILE MANUFACTURING, with $1.92 billion and 54,851 awards. NAICS 336211, MOTOR VEHICLE BODY MANUFACTURING, is a secondary but much smaller category at $10.22 million across 568 awards, reinforcing a vehicle-centric procurement profile.

Annual contract trend over the analysis window

Recent annual activity has been elevated and uneven, with 2025 already at $458.78 million and 16,812 awards. Prior years show substantial volume as well, including $439.96 million in 2022 and $370.40 million in 2023, followed by a lower 2024 total of $150.21 million; 2021 stands at $185.56 million. The pattern suggests ongoing high-volume contracting with year-to-year fluctuations rather than a steady linear trend.

How to interpret this page

This summary is based on FPDS-observed obligations for the stated CAGE code and UEI over the last 10 years, using the provided agency, NAICS, and annual aggregation outputs. Totals reflect obligated dollars and award counts only within the supplied analysis window; no additional source records were inferred or added.

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 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 1,928,364,026.00 1.93 billion 55,416
7529 NATIONAL INSTITUTES OF HEALTH 578,914.26 578.91 thousand 3

Insight

Over the last 10 years, obligations for FLEET VEHICLE SOURCE, INC. are overwhelmingly concentrated in the Federal Acquisition Service, which accounts for $1.93 billion across 55,416 awards. National Institutes of Health represents a very small secondary share, with $578,914.26 across 3 awards. This distribution indicates that the vendor’s federal activity is highly concentrated with one agency, with limited award volume elsewhere.

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 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 1,918,721,110.26 1.92 billion 54,851
336211 MOTOR VEHICLE BODY MANUFACTURING 10,221,830.00 10.22 million 568

Insight

Over the last 10 years, FLEET VEHICLE SOURCE, INC. (CAGE 6VVA2) has received 1.93 billion across 55,419 awards, with an average award value of 34,806.52. Obligations are overwhelmingly concentrated in NAICS 336111, Automobile Manufacturing, which accounts for 1.92 billion and 54,851 awards, indicating a highly focused award profile. NAICS 336211, Motor Vehicle Body Manufacturing, is a minor secondary category at 10.22 million across 568 awards, representing a very small share of total obligated value.

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 10 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
2020 153,231,950.00 153.23 million 4,317
2019 87,391,002.00 87.39 million 2,674
2018 83,304,076.00 83.30 million 2,344
2017 103,095.00 103.09 thousand 5

Insight

Over the last 10 years, FLEET VEHICLE SOURCE, INC. (CAGE 6VVA2) has obligated $1.93 billion across 55,419 awards, with activity highly concentrated in the most recent years. Obligations peaked in 2025 at $458.78 million and were also elevated in 2022 ($439.96 million) and 2023 ($370.40 million), after a smaller but still substantial 2024 total of $150.21 million. Earlier years were much lower, including 2017 at $103.09 thousand and 2018-2021 ranging from $83.30 million to $185.56 million, indicating a pronounced upward shift in recent obligation volume and award counts.

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.