Award Number

Award Number 9700 / HT940216C0001 Federal Contract Action Summary (Last 10 Years)

Award number HT940216C0001 for agency ID 9700 shows 711 actions over the last 10 years and 51.19 billion in total obligations.

This award record summarizes procurement activity for PIID HT940216C0001 within agency ID 9700 over the last 10 years. The record includes 711 award actions with an average action value of 71,996,069.29 and total obligated amounts of 51,189,205,263.03.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts reflect the provided analysis window and may differ from other reporting views due to timing or rounding.

Agency ID
9700
PIID
HT940216C0001
Type
Award
Total Obligated
51.19 billion
51,189,205,263.03
Actions
711
Average Action Value
71,996,069.29

Overview

This page presents the award-level procurement history for PIID HT940216C0001 under agency ID 9700. Over the last 10 years, the award shows 711 actions and total obligated funding of 51,189,205,263.03. The average action value is 71,996,069.29.

How to use this page

Use this page to review the scale and frequency of activity tied to this award number. The totals provide a compact view of obligation volume, while the action count and average action value help frame how the award was used over time.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940216C0001'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
97DH DEFENSE HEALTH AGENCY (DHA) 51,189,205,263.03 51.19 billion 711

Insight

Within the 10-year window for PIID HT940216C0001, all reported obligations in the top_agencies view are concentrated in Defense Health Agency (DHA). DHA accounts for $51.19 billion across 711 awards, indicating highly concentrated agency-level activity rather than a dispersed obligation pattern. This concentration suggests DHA is the primary obligating entity associated with this award record over the period reviewed.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940216C0001'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
HUMANA GOVERNMENT BUSINESS, INC. 050S0 51,121,775,621.03 51.12 billion 708
HUMANA GOVERNMENT BUSINESS, INC. 67,429,642.00 67.43 million 3

Insight

Award obligations are highly concentrated with HUMANA GOVERNMENT BUSINESS, INC., which accounts for $51.12 billion across 708 awards under CAGE 050S0. A second entry for the same vendor name, without a CAGE code, totals $67.43 million across 3 awards, indicating a much smaller additional obligation stream. Overall, obligations in this view are dominated by one vendor identity, with the smaller entry representing a limited share of total activity.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940216C0001'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
524114 DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS 51,189,205,263.03 51.19 billion 711

Insight

Over the 10-year window, obligations for award PIID HT940216C0001 are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. This NAICS accounts for $51.19 billion across 711 awards, indicating a highly concentrated award profile with no diversification across other NAICS codes in the provided data. The volume of actions suggests sustained reliance on this service category over the period.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940216C0001'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
Q201 MEDICAL- GENERAL HEALTH CARE 45,065,500,171.55 45.07 billion 629
Q201 MEDICAL- MANAGED HEALTHCARE 6,123,705,091.48 6.12 billion 82

Insight

Award activity for PIID HT940216C0001 is highly concentrated in PSC Q201, with $45.07 billion obligated across 629 actions under Medical- General Health Care. A smaller but still material share is recorded under PSC Q201 for Medical- Managed Healthcare, totaling $6.12 billion across 82 actions. Over the 10-year window, obligations are dominated by these two PSC entries, indicating a strong concentration in healthcare-related services.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'HT940216C0001'
    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 ASC
Year Total Obligated Readable Actions
2016 67,429,642.00 67.43 million 1
2017 162,585,314.12 162.59 million 59
2018 8,217,709,860.26 8.22 billion 112
2019 4,791,641,925.11 4.79 billion 96
2020 6,728,692,952.55 6.73 billion 85
2021 7,978,863,977.17 7.98 billion 101
2022 7,329,024,710.88 7.33 billion 76
2023 8,243,334,262.51 8.24 billion 75
2024 7,151,436,670.43 7.15 billion 77
2025 518,485,948.00 518.49 million 29

Insight

Obligations for PIID HT940216C0001 were minimal in 2016–2017, then increased sharply in 2018 to 8.22 billion across 112 awards, marking the clear inflection point in the 10-year window. From 2019 through 2024, obligations remained elevated but fluctuated within a high range of 4.79 billion to 8.24 billion annually, with award counts generally between 75 and 101. In 2025, obligations and award count are lower to date at 518.49 million and 29 awards, indicating a partial-year decline rather than a sustained shift.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.