Federal Contractor

VETERANS EVALUATION SERVICES, INC. Federal Contract Obligations (Last 10 Years)

Federal procurement profile for VETERANS EVALUATION SERVICES, INC. (CAGE 69U26, UEI MT6ZNX9BMGB7) covering obligations, awards, agencies, and NAICS activity over the last 10 years.

VETERANS EVALUATION SERVICES, INC. has recorded 289 award actions totaling $8.12 billion in federal obligations over the last 10 years, with an average action value of $28.09 million. Nearly all obligated value is tied to the Department of Veterans Affairs and NAICS 621111, Offices of Physicians (Except Mental Health Specialists).

Generated at 03/21/2026

Analysis period: Last 10 years

Annual totals shown reflect the provided analysis window, with 2025 at $3.22 billion, followed by 2024 at $1.38 billion and 2023 at $716.51 million.

CAGE Code
69U26
UEI
MT6ZNX9BMGB7
Total Obligated
8.12 billion
8,119,018,159.67
Award Actions
289
Average Action Value
28,093,488.44

About VETERANS EVALUATION SERVICES, INC. federal contract activity

VETERANS EVALUATION SERVICES, INC. (CAGE 69U26, UEI MT6ZNX9BMGB7) has received 289 awards totaling $8.12 billion over the last 10 years, with an average award value of $28.09 million. The obligation profile is highly concentrated, with the company’s federal business occurring entirely within a single agency and a single NAICS code in the provided data.

Agency mix and customer concentration

All recorded obligations are with the VETERANS AFFAIRS, DEPARTMENT OF (agency 3600), which accounts for 289 awards and $8.12 billion in total obligated value. This indicates a fully concentrated customer base in the available FPDS record set, with no diversification across other agencies in the analysis window.

Industry profile based on NAICS activity

All recorded obligations map to NAICS 621111, OFFICES OF PHYSICIANS (EXCEPT MENTAL HEALTH SPECIALISTS), with 289 awards and $8.12 billion obligated. The procurement history therefore reflects a single-line business profile centered on physician office services as captured in FPDS.

Annual contract trend over the analysis window

Annual obligations have remained substantial but uneven, with the strongest year in the displayed period occurring in 2025 at $3.22 billion across 46 awards. After that, obligations declined to $1.38 billion in 2024 and then to the $716 million to $732 million range in 2021-2023, while award counts stayed relatively stable between 27 and 49. The pattern suggests persistent use of the vendor, with year-to-year volatility in obligated value rather than a steady linear trend.

How to interpret this page

This summary is based on FPDS records associated with CAGE 69U26 and UEI MT6ZNX9BMGB7 over the last 10 years. Totals, counts, and mix statements reflect the provided aggregated data only and should be interpreted as a snapshot of recorded federal obligations, not a complete statement of the vendor’s total business activity.

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 = '69U26'
        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
3600 VETERANS AFFAIRS, DEPARTMENT OF 8,119,018,159.67 8.12 billion 289

Insight

Over the last 10 years, VETERANS EVALUATION SERVICES, INC. received 8.12 billion across 289 awards, with an average award value of about 28.1 million. Obligations are fully concentrated within the Department of Veterans Affairs, indicating a single-agency dependency profile and no observable diversification across other agencies in this period. This concentration suggests the vendor’s federal business is driven entirely by VA procurement activity.

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 = '69U26'
        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
621111 OFFICES OF PHYSICIANS (EXCEPT MENTAL HEALTH SPECIALISTS) 8,119,018,159.67 8.12 billion 289

Insight

Over the last 10 years, VETERANS EVALUATION SERVICES, INC. (CAGE 69U26) shows complete NAICS concentration in 621111, Offices of Physicians (Except Mental Health Specialists). All $8.12 billion in obligated value and all 289 awards are assigned to this single NAICS, indicating a highly concentrated procurement profile with no diversification across reported NAICS categories. The average award value of about $28.09 million reflects a large-award pattern within this sole category.

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 = '69U26'
        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 3,224,734,156.16 3.22 billion 46
2024 1,383,598,891.60 1.38 billion 49
2023 716,508,919.13 716.51 million 46
2022 732,287,683.63 732.29 million 27
2021 718,204,497.00 718.20 million 36
2020 483,500,000.00 483.50 million 15
2019 376,538,017.79 376.54 million 36
2018 294,759,217.36 294.76 million 21
2017 172,986,777.00 172.99 million 11
2016 15,900,000.00 15.90 million 2

Insight

VETERANS EVALUATION SERVICES, INC. (CAGE 69U26) has obligated $8.12 billion across 289 awards over the last 10 years, with an average award value of $28.09 million. Obligation volume is highly concentrated in the most recent years: 2025 accounts for $3.22 billion and 46 awards, and 2024 adds $1.38 billion and 49 awards, together representing more than half of the 10-year total. Prior years were materially lower and generally ranged from $15.9 million to $732.3 million annually, indicating a strong upward shift in both obligation level and award activity beginning in 2021.

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.