Federal Contractor

OPTUM PUBLIC SECTOR SOLUTIONS, INC. Federal Contract Obligations (Last 10 Years)

FPDS vendor profile for OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58, UEI XMUZGJN98231) covering federal awards over the last 10 years.

OPTUM PUBLIC SECTOR SOLUTIONS, INC. has 371 award actions totaling $84.16 billion in obligated funds across the last 10 years, with an average action value of $226.85 million. Most obligations are from the Department of Veterans Affairs, and most of the spending is classified under NAICS 524114, Direct Health and Medical Insurance Carriers.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided 10-year analysis window and are rounded for display; agency and NAICS shares are based on obligated amounts.

CAGE Code
4KU58
UEI
XMUZGJN98231
Total Obligated
84.16 billion
84,160,160,949.14
Award Actions
371
Average Action Value
226,846,795.01

About OPTUM PUBLIC SECTOR SOLUTIONS, INC. federal contract activity

OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58, UEI XMUZGJN98231) recorded 371 FPDS awards totaling 84.16 billion over the last 10 years, with an average award value of 226.85 million. The vendor’s federal obligation profile is highly concentrated, indicating a small number of very large transactions drive most of the spend.

Agency mix and customer concentration

The Department of Veterans Affairs dominates the relationship, accounting for 84.12 billion across 350 awards, or effectively the entire observed obligation base. The remaining activity is limited and fragmented across the Office of the Assistant Secretary for Administration, the Centers for Disease Control and Prevention, and the Office of Personnel Management, each contributing comparatively small totals.

Industry profile based on NAICS activity

The award base is overwhelmingly concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, which represents 84.11 billion across 339 awards. Smaller amounts appear in NAICS 541519, Other Computer Related Services, and NAICS 624190, Other Individual and Family Services, suggesting limited diversification outside the core health insurance-related work.

Annual contract trend over the analysis window

Annual obligations remained elevated throughout the observed period, with 2021 through 2025 each exceeding 8.77 billion. Spending peaked in 2024 at 20.53 billion, followed by 2025 at 18.80 billion and 2022 at 17.76 billion, showing sustained large-scale federal activity rather than a single-year spike.

How to interpret this page

This summary uses FPDS obligation records for the vendor’s CAGE code and UEI across the last 10 years. Agency, NAICS, and annual totals are based on obligated amounts and award counts in the provided dataset; no attempt was made to infer contract scope beyond the recorded FPDS attributes.

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 = '4KU58'
        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 84,117,593,044.87 84.12 billion 350
7570 OFFICE OF THE ASSISTANT SECRETARY FOR ADMINISTRATION (ASA) 19,957,115.00 19.96 million 2
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 19,182,071.91 19.18 million 7
2400 OFFICE OF PERSONNEL MANAGEMENT 3,428,717.36 3.43 million 12

Insight

Over the last 10 years, OPTUM PUBLIC SECTOR SOLUTIONS, INC. has received $84.16 billion across 371 awards, with an average award value of $226.85 million. Obligations are highly concentrated at the Department of Veterans Affairs, which accounts for $84.12 billion and 350 awards, or nearly all reported activity. The remaining agencies represent comparatively small portions of total obligations, including ASA at $19.96 million, CDC at $19.18 million, and OPM at $3.43 million.

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 = '4KU58'
        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
524114 DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS 84,106,611,882.87 84.11 billion 339
541519 OTHER COMPUTER RELATED SERVICES 42,567,904.27 42.57 million 21
624190 OTHER INDIVIDUAL AND FAMILY SERVICES 10,981,162.00 10.98 million 11

Insight

Over the last 10 years, OPTUM PUBLIC SECTOR SOLUTIONS, INC. shows extreme NAICS concentration in 524114, Direct Health and Medical Insurance Carriers, which accounts for $84.11 billion across 339 awards, or nearly all recorded obligations for the vendor. The remaining obligations are distributed across a much smaller set of awards in 541519, Other Computer Related Services, at $42.57 million across 21 awards, and 624190, Other Individual and Family Services, at $10.98 million across 11 awards. This pattern indicates a highly specialized contracting profile with limited diversification outside the primary health insurance carrier 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 = '4KU58'
        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 18,795,539,552.04 18.80 billion 40
2024 20,526,677,722.58 20.53 billion 54
2023 16,288,697,431.79 16.29 billion 51
2022 17,758,167,407.81 17.76 billion 64
2021 8,768,459,936.01 8.77 billion 69
2020 1,755,738,003.32 1.76 billion 68
2019 261,621,938.89 261.62 million 20
2018 3,893,299.10 3.89 million 4
2017 1,365,657.60 1.37 million 1

Insight

Optum Public Sector Solutions, Inc. shows highly concentrated obligations in the last 10 years, with $84.16 billion across 371 awards and an average award value of $226.85 million. Activity is heavily weighted to 2021-2025, which accounts for nearly all obligated dollars, with annual obligations ranging from $8.77 billion in 2021 to $20.53 billion in 2024 and remaining elevated at $18.80 billion in 2025. Earlier years were minimal by comparison, increasing from $1.37 million in 2017 to $261.62 million in 2019 before accelerating sharply in 2020.

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.