Federal Contractor

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

Federal procurement profile for OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58, UEI XMUZGJN98231) covering obligations, agencies, NAICS, and annual trends over the last 5 years.

OPTUM PUBLIC SECTOR SOLUTIONS, INC. recorded $82.14 billion in obligated federal awards across 278 actions in the last five years, with an average action value of $295.46 million. Activity was concentrated in the Department of Veterans Affairs and NAICS 524114, Direct Health and Medical Insurance Carriers.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the stated 5-year analysis window and may include negative obligations where reported in FPDS source data.

CAGE Code
4KU58
UEI
XMUZGJN98231
Total Obligated
82.14 billion
82,137,542,050.23
Award Actions
278
Average Action Value
295,458,784.35

About OPTUM PUBLIC SECTOR SOLUTIONS, INC. federal contract activity

OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58, UEI XMUZGJN98231) recorded 82.14 billion in obligated value across 278 awards over the last 5 years, for an average award value of 295.46 million. The portfolio is highly concentrated, with federal spending dominated by a single department and a small set of recurring contracting patterns.

Agency mix and customer concentration

The VETERANS AFFAIRS, DEPARTMENT OF accounts for essentially the entire profile, with 82.11 billion obligated across 266 awards. Remaining agency activity is limited and materially smaller: the CDC obligated 19.18 million across 7 awards, ASA obligated 9.98 million on 1 award, and OPM shows a small negative obligation total across 4 awards, indicating adjustments or deobligations in the record.

Industry profile based on NAICS activity

The vendor’s work is overwhelmingly aligned to NAICS 524114, Direct Health and Medical Insurance Carriers, which represents 82.11 billion across 259 awards. Secondary activity appears in 541519, Other Computer Related Services, and 624190, Other Individual and Family Services, but both are minor relative to the core health insurance category.

Annual contract trend over the analysis window

Obligations were strong and broadly stable at a very high level from 2022 through 2025, ranging from 16.29 billion to 20.53 billion annually. The lowest year in the window was 2021 at 8.77 billion, followed by a step-up in 2022 and continued elevated spending through 2025, with award counts peaking in 2021 and then moderating.

How to interpret this page

This summary uses FPDS-observed obligations and award counts for the last 5 years, aggregated by vendor identifiers associated with OPTUM PUBLIC SECTOR SOLUTIONS, INC. Amounts reflect obligated dollars as reported in the source data and may include adjustments such as negative obligations. Agency and NAICS concentrations are based on total obligated value within the analysis window.

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 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 82,108,415,093.92 82.11 billion 266
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 19,182,071.91 19.18 million 7
7570 OFFICE OF THE ASSISTANT SECRETARY FOR ADMINISTRATION (ASA) 9,978,557.00 9.98 million 1
2400 OFFICE OF PERSONNEL MANAGEMENT -33,672.60 -33.67 thousand 4

Insight

Over the last 5 years, OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58) received $82.14 billion across 278 awards, with obligations heavily concentrated in the Department of Veterans Affairs. VA accounted for $82.11 billion and 266 awards, representing nearly all obligated dollars in this period. The remaining activity was limited to CDC ($19.18 million, 7 awards), ASA ($9.98 million, 1 award), and a small net negative obligation at OPM (-$33.67 thousand, 4 awards), indicating a highly concentrated agency footprint.

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 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
524114 DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS 82,106,400,556.92 82.11 billion 259
541519 OTHER COMPUTER RELATED SERVICES 29,126,956.31 29.13 million 12
624190 OTHER INDIVIDUAL AND FAMILY SERVICES 2,014,537.00 2.01 million 7

Insight

OPTUM PUBLIC SECTOR SOLUTIONS, INC. shows extreme NAICS concentration over the last 5 years, with NAICS 524114, Direct Health and Medical Insurance Carriers, accounting for $82.11 billion of $82.14 billion total obligated and 259 of 278 awards. The remaining obligations are distributed across a small secondary mix of services, led by NAICS 541519 at $29.13 million across 12 awards and NAICS 624190 at $2.01 million across 7 awards. This pattern indicates the vendor’s federal activity is overwhelmingly tied to a single NAICS code, with limited diversification into other service categories.

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

Insight

Over the last 5 years, OPTUM PUBLIC SECTOR SOLUTIONS, INC. (CAGE 4KU58) received $82.14 billion across 278 awards, averaging $295.46 million per award. Obligations increased sharply from $8.77 billion in 2021 to a peak of $20.53 billion in 2024, then eased slightly to $18.80 billion in 2025, indicating sustained high-value activity with a recent moderation. Award counts were highest in 2021 at 69 and declined to 40 in 2025, while obligation levels remained elevated, suggesting a shift toward fewer but larger awards over time.

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.