Federal Contractor

HUMANA GOVERNMENT BUSINESS, INC. Federal Contract Obligations (Last 10 Years)

HUMANA GOVERNMENT BUSINESS, INC. (CAGE 050S0, UEI ZE6ZM6NKSV43) has 1,104 federal award actions totaling 60.21 billion over the last 10 years, led almost entirely by the Defense Health Agency.

Federal procurement records show HUMANA GOVERNMENT BUSINESS, INC. received 60,207,854,797.35 in obligations across 1,104 award actions in the last 10 years. The company’s activity is concentrated in defense health contracting, with most obligations tied to the Defense Health Agency and NAICS 524114, Direct Health and Medical Insurance Carriers.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect readable FPDS analysis values for the last 10 years and may include negative adjustments in some agency and NAICS lines.

CAGE Code
050S0
UEI
ZE6ZM6NKSV43
Total Obligated
60.21 billion
60,207,854,797.35
Award Actions
1,104
Average Action Value
54,536,100.35

About HUMANA GOVERNMENT BUSINESS, INC. federal contract activity

HUMANA GOVERNMENT BUSINESS, INC. (CAGE 050S0, UEI ZE6ZM6NKSV43) recorded 1,104 awards and $60.21 billion in obligated value over the last 10 years, with an average award value of $54.54 million. The obligation profile is highly concentrated, indicating a small set of large federal healthcare-related actions rather than a broad base of lower-value awards.

Agency mix and customer concentration

The contract base is overwhelmingly concentrated at the Defense Health Agency (DHA), which accounts for $60.18 billion across 1,061 awards and effectively defines the vendor’s federal footprint. The Department of the Army contributes a much smaller $32.27 million across 40 awards, while the Department of the Navy shows a negligible negative obligated amount across 3 awards, which does not materially affect the overall profile.

Industry profile based on NAICS activity

The dominant NAICS is 524114, Direct Health and Medical Insurance Carriers, with $60.18 billion across 1,063 awards, closely matching the vendor’s overall award concentration. Smaller activity appears in NAICS 561110, Office Administrative Services, at $34.81 million across 29 awards, while NAICS 621111 shows a negative obligated amount of $2.54 million across 12 awards, indicating adjustments or deobligations within that category.

Annual contract trend over the analysis window

Annual obligations remain at multibillion-dollar levels in each reported year, ranging from $5.94 billion in 2025 to a peak of $8.24 billion in 2023. Award counts vary materially year to year, with 156 awards in 2024 versus 75 in 2023, suggesting that obligation volume is driven more by contract size and funding actions than by a stable award cadence.

How to interpret this page

This page summarizes FPDS award data associated with CAGE 050S0 and UEI ZE6ZM6NKSV43 for the last 10 years. Totals reflect obligated dollars and award counts as reported in the provided dataset; negative values are preserved because they indicate deobligations or adjustments rather than new obligations.

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 = '050S0'
        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
97DH DEFENSE HEALTH AGENCY (DHA) 60,175,585,441.78 60.18 billion 1,061
2100 DEPT OF THE ARMY 32,270,075.68 32.27 million 40
1700 DEPT OF THE NAVY -720.11 -720.11 3

Insight

Over the last 10 years, HUMANA GOVERNMENT BUSINESS, INC. (CAGE 050S0) received $60.21 billion across 1,104 awards, with an average award value of $54.54 million. Obligations are overwhelmingly concentrated at the Defense Health Agency, which accounts for $60.18 billion and 1,061 awards, or nearly all reported activity in this window. The Department of the Army is a distant second at $32.27 million across 40 awards, while Department of the Navy obligations are de minimis at -$720.11 across 3 awards.

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 = '050S0'
        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 60,175,585,441.78 60.18 billion 1,063
561110 OFFICE ADMINISTRATIVE SERVICES 34,808,664.89 34.81 million 29
621111 OFFICES OF PHYSICIANS (EXCEPT MENTAL HEALTH SPECIALISTS) -2,539,309.32 -2.54 million 12

Insight

Over the last 10 years, HUMANA GOVERNMENT BUSINESS, INC.’s obligations are overwhelmingly concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, which accounts for $60.18 billion of the $60.21 billion obligated and 1,063 of 1,104 awards. This indicates a highly specialized award profile with limited diversification across other NAICS codes. The remaining obligations are small by comparison, led by NAICS 561110 at $34.81 million across 29 awards, while NAICS 621111 reflects a net negative obligated value of $2.54 million across 12 awards.

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 = '050S0'
        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 5,937,653,449.18 5.94 billion 107
2024 7,493,169,940.24 7.49 billion 156
2023 8,243,334,262.51 8.24 billion 75
2022 7,335,103,684.19 7.34 billion 78
2021 7,984,444,879.53 7.98 billion 107
2020 6,735,443,042.69 6.74 billion 90
2019 4,788,095,210.86 4.79 billion 103
2018 8,561,241,454.94 8.56 billion 180
2017 3,129,368,873.21 3.13 billion 207
2016 0.00 0.00 1

Insight

HUMANA GOVERNMENT BUSINESS, INC. has $60.21 billion obligated across 1,104 awards over the last 10 years, with annual obligations concentrated in the 2018–2025 period. Funding peaked in 2018 at $8.56 billion, remained elevated through 2021–2024, and declined to $5.94 billion in 2025. Award activity was highest in 2017–2018 (207 and 180 awards, respectively) and fell to 75–107 awards annually from 2021 onward, indicating fewer but still large-value obligations in recent years.

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.