Federal Contractor

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

Federal procurement summary for VETERANS EVALUATION SERVICES, INC. (CAGE 69U26, UEI MT6ZNX9BMGB7) covering obligations and awards over the last 5 years.

VETERANS EVALUATION SERVICES, INC. recorded 204 award actions totaling $6.78 billion in federal obligations over the last 5 years, with all reported spending attributed to the Department of Veterans Affairs. Annual obligations peaked in 2025 at $3.22 billion, following $1.38 billion in 2024 and roughly $716.51 million in 2023.

Generated at 03/21/2026

Analysis period: Last 5 years

Amounts and counts reflect the provided FPDS analysis window and are grouped by agency, NAICS, and fiscal year.

CAGE Code
69U26
UEI
MT6ZNX9BMGB7
Total Obligated
6.78 billion
6,775,334,147.52
Award Actions
204
Average Action Value
33,212,422.29

About VETERANS EVALUATION SERVICES, INC. federal contract activity

VETERANS EVALUATION SERVICES, INC. (CAGE 69U26, UEI MT6ZNX9BMGB7) recorded $6.78 billion in obligated awards across 204 actions over the last 5 years. The portfolio averages $33.21 million per award, indicating a high-value, low-volume contracting profile. All reported obligations in this window are associated with the Department of Veterans Affairs.

Agency mix and customer concentration

Award activity is fully concentrated within the Veterans Affairs, Department of (agency 3600), which accounts for the entire $6.78 billion and all 204 awards in the analysis window. This indicates a single-agency dependency with no observable diversification across other federal customers. Procurement exposure is therefore tightly tied to VA demand and acquisition activity.

Industry profile based on NAICS activity

The reported obligation base is entirely mapped to NAICS 621111, Offices of Physicians (except Mental Health Specialists), with $6.78 billion across 204 awards. That concentration is consistent with a medical services procurement profile rather than a diversified vendor mix. No other NAICS categories are reflected in the provided data.

Annual contract trend over the analysis window

Obligations accelerated sharply in 2025 to $3.22 billion across 46 awards, after $1.38 billion in 2024 and $716.51 million in 2023. Earlier years were comparatively stable at $732.29 million in 2022 and $718.20 million in 2021, with award counts ranging from 27 to 49. The trend shows both rising dollar volume and sustained award activity, with 2025 representing a step-change in funding.

How to interpret this page

This summary uses the provided FPDS Query outputs for the last 5 years and relies only on the stated vendor identifiers, award totals, agency totals, NAICS totals, and annual trend figures. Totals are presented as obligated dollars and award counts exactly as supplied. Where concentration is described, it reflects the provided data showing all reported obligations within a single agency and a single NAICS code.

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 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
3600 VETERANS AFFAIRS, DEPARTMENT OF 6,775,334,147.52 6.78 billion 204

Insight

Over the last 5 years, all reported obligations for VETERANS EVALUATION SERVICES, INC. are concentrated within the Department of Veterans Affairs. The vendor received $6.78 billion across 204 awards, indicating a highly concentrated award profile with no reported obligations to other agencies in this dataset. The average award value of approximately $33.2 million suggests a small number of relatively large obligations rather than broad interagency distribution.

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 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
621111 OFFICES OF PHYSICIANS (EXCEPT MENTAL HEALTH SPECIALISTS) 6,775,334,147.52 6.78 billion 204

Insight

Over the last 5 years, VETERANS EVALUATION SERVICES, INC. (CAGE 69U26) has been fully concentrated in NAICS 621111, OFFICES OF PHYSICIANS (EXCEPT MENTAL HEALTH SPECIALISTS). All $6.78 billion in obligated value and all 204 awards are recorded under this single NAICS, indicating a highly concentrated procurement profile with no observed diversification across NAICS categories in the provided data. The average award value of $33.2 million further suggests a large-award pattern within this sole industry classification.

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 5 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

Insight

VETERANS EVALUATION SERVICES, INC. has obligated $6.78 billion across 204 awards over the last 5 years, with a notable concentration in 2025, which accounts for $3.22 billion, or nearly half of the total period obligations. The remaining obligations are distributed across 2024 ($1.38 billion), 2023 ($716.51 million), 2022 ($732.29 million), and 2021 ($718.20 million), indicating a material step-up in funding beginning in 2024 and accelerating in 2025. Award volume is comparatively steady at 27 to 49 awards per year, suggesting the increase in obligation value is driven more by larger awards than by a higher count of awards.

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.