Award Number

Award Number 9700 / HT940221C0007 Federal Contract Action Summary (Last Year)

Federal procurement analysis page for award number HT940221C0007 under agency ID 9700, covering last full year activity.

This page summarizes award number HT940221C0007 for agency ID 9700 during the last full year. The award shows 32 actions and total obligations of $550.21 million.

Generated at 03/20/2026

Analysis period: Last full year

Totals are based on the provided exact obligated amount of $550,206,276.97 and the stated action count for the analysis window.

Agency ID
9700
PIID
HT940221C0007
Type
Award
Total Obligated
550.21 million
550,206,276.97
Actions
32
Average Action Value
17,193,946.16

Overview

The award number HT940221C0007 is associated with agency ID 9700 and recorded activity in the last full year. Total obligated funding equals $550,206,276.97 across 32 award actions, for an average action value of $17,193,946.16. This page is limited to the provided award-level figures.

How to use this page

Use this page to review the award’s overall obligation volume and action frequency for the last full year. The average action value provides a simple indicator of how obligation amounts were distributed across the 32 actions.

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 = 'HT940221C0007'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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) 550,206,276.97 550.21 million 32

Insight

Obligations for PIID HT940221C0007 are fully concentrated within the Defense Health Agency (DHA), which accounts for the entire reported 1-year obligated amount of $550.21 million across 32 awards. This indicates a single-agency funding profile with no reported distribution across other agencies in the provided data. The volume of awards suggests recurring or segmented obligation activity under the same agency relationship.

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 = 'HT940221C0007'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
EXPRESS SCRIPTS, INC. 1WPW1 405,114,404.59 405.11 million 23
EVERNORTH FEDERAL SERVICES INC 0Q6S3 145,091,872.38 145.09 million 9

Insight

Obligations for PIID HT940221C0007 over the past year are highly concentrated among two vendors. EXPRESS SCRIPTS, INC. accounts for 405.11 million across 23 awards, while EVERNORTH FEDERAL SERVICES INC accounts for 145.09 million across 9 awards. Together, these vendors represent the dominant share of obligated activity in this award, with EXPRESS SCRIPTS, INC. carrying the largest concentration of value.

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 = 'HT940221C0007'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 550,206,276.97 550.21 million 32

Insight

Over the past 1 year, obligations for PIID HT940221C0007 are fully concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers. This category accounts for $550.21 million across 32 awards, indicating a highly focused spending pattern within a single industry classification. No additional NAICS codes are reported in this section, so distribution across NAICS is not diversified.

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 = 'HT940221C0007'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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- MANAGED HEALTHCARE 550,206,276.97 550.21 million 32

Insight

Within the 1-year window for award HT940221C0007, obligations are fully concentrated in PSC Q201, Medical - Managed Healthcare, totaling $550.21 million across 32 awards. This indicates a highly focused obligation profile with no evidence of PSC diversification in the provided data. The distribution suggests this award activity is dominated by a single managed healthcare product/service category.

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 = 'HT940221C0007'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 550,206,276.97 550.21 million 32

Insight

For PIID HT940221C0007, the 1-year annual trend shows $550.21 million obligated in 2025 across 32 awards. Obligations are concentrated in a single year within the review window, indicating no multi-year distribution in the provided data. The average obligation per award is substantial, suggesting a small number of high-value actions rather than broad dispersal across many awards.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.