Federal Contractor

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

Federal procurement summary for HUMANA GOVERNMENT BUSINESS, INC. (CAGE 050S0, UEI ZE6ZM6NKSV43) covering obligations over the last 5 years.

HUMANA GOVERNMENT BUSINESS, INC. recorded 523 award actions totaling $36,993,706,215.65 in the last 5 years, with an average action value of $70,733,663.89. Spending was concentrated at the Defense Health Agency, which accounted for $36.99 billion across 516 actions, with smaller activity at the Department of the Army.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect readable obligation data for the selected 5-year analysis window; annual, agency, and NAICS figures may include negative obligations where recorded.

CAGE Code
050S0
UEI
ZE6ZM6NKSV43
Total Obligated
36.99 billion
36,993,706,215.65
Award Actions
523
Average Action Value
70,733,663.89

About HUMANA GOVERNMENT BUSINESS, INC. federal contract activity

HUMANA GOVERNMENT BUSINESS, INC. (CAGE 050S0, UEI ZE6ZM6NKSV43) recorded 36.99 billion in obligated awards across 523 actions over the last 5 years, for an average award value of 70.73 million. The contract profile is heavily concentrated, with the Defense Health Agency accounting for essentially all observed obligations and award volume.

Agency mix and customer concentration

The award mix is overwhelmingly dominated by the DEFENSE HEALTH AGENCY (97DH), which represents 36.99 billion across 516 awards, indicating a highly concentrated federal customer base. The only other material agency in the window is the DEPT OF THE ARMY (2100), with 8.45 million across 7 awards, a very small share of total obligations.

Industry profile based on NAICS activity

Obligations are almost entirely aligned to NAICS 524114, Direct Health and Medical Insurance Carriers, at 36.99 billion across 516 awards. Secondary activity appears in NAICS 561110, Office Administrative Services, with 8.68 million across 5 awards, while NAICS 621111 shows a small net negative obligation of 234.38 thousand across 2 awards, suggesting limited de-obligation or closeout activity in that category.

Annual contract trend over the analysis window

Annual obligations remained in the multi-billion-dollar range throughout the period, peaking in 2023 at 8.24 billion before moderating to 7.49 billion in 2024 and 5.94 billion in 2025. Award counts were highest in 2024 at 156 and fell to 75 in 2023, indicating that obligation levels did not move in lockstep with action volume.

How to interpret this page

This summary reflects FPDS-observed prime award data for the vendor over the last 5 years, aggregated by obligation amount, award count, agency, NAICS, and fiscal year. Monetary values are reported as recorded in FPDS, and totals may include negative obligations where de-obligations or adjustments are present.

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 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
97DH DEFENSE HEALTH AGENCY (DHA) 36,985,257,177.29 36.99 billion 516
2100 DEPT OF THE ARMY 8,449,038.36 8.45 million 7

Insight

Over the last 5 years, HUMANA GOVERNMENT BUSINESS, INC. received $36.99 billion across 523 awards, with an average award value of $70.73 million. Obligation is overwhelmingly concentrated at the Defense Health Agency, which accounts for $36.99 billion and 516 awards, or nearly all activity in this period. The Department of the Army represents a minimal share of obligations, with $8.45 million across 7 awards, indicating a highly concentrated customer base.

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 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 36,985,257,177.29 36.99 billion 516
561110 OFFICE ADMINISTRATIVE SERVICES 8,683,417.00 8.68 million 5
621111 OFFICES OF PHYSICIANS (EXCEPT MENTAL HEALTH SPECIALISTS) -234,378.64 -234.38 thousand 2

Insight

Over the last 5 years, HUMANA GOVERNMENT BUSINESS, INC. shows extreme concentration in NAICS 524114, Direct Health and Medical Insurance Carriers, which accounts for essentially all obligated dollars: $36.99 billion across 516 awards. The remaining activity is limited and dispersed, with modest obligations in NAICS 561110, Office Administrative Services, at $8.68 million across 5 awards, and a small negative obligation in NAICS 621111, Offices of Physicians, at -$234.38 thousand across 2 awards. Overall, the vendor’s federal activity is overwhelmingly tied to a single healthcare insurance NAICS, with only minimal diversification into other administrative and medical 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 = '050S0'
        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 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

Insight

Over the last 5 years, HUMANA GOVERNMENT BUSINESS, INC. received $36.99 billion across 523 awards, averaging $70.73 million per award. Obligations were relatively concentrated in a narrow annual range from $5.94 billion to $8.24 billion, indicating sustained high-dollar activity rather than a single-year spike. Annual obligations peaked in 2023 and then declined in 2024 and 2025, while award counts also fell after 2024, suggesting recent contraction in both volume and obligated dollars.

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.