In the last full year, EXPRESS SCRIPTS, INC. recorded $326,967,718.44 in obligated federal awards across 46 actions, for an average action value of $7,107,993.87. Activity was concentrated with the Defense Health Agency, which accounted for $323.61 million of the total, while smaller amounts came from ASPR and CDC.
Federal Contractor
EXPRESS SCRIPTS, INC. Federal Contract Obligations (Last Year)
Federal procurement profile for EXPRESS SCRIPTS, INC. (CAGE 1WPW1, UEI QKNTMFZFR6E9) covering obligations, award activity, agencies, and NAICS mix over the last full year.
All figures reflect the last full year and are based on reported FPDS obligations, award counts, agency detail, and NAICS classifications.
About EXPRESS SCRIPTS, INC. federal contract activity
EXPRESS SCRIPTS, INC. (CAGE 1WPW1, UEI QKNTMFZFR6E9) recorded 326.97 million in obligated contract value across 46 awards in the last full year, for an average award value of 7.11 million. The profile is highly concentrated, with one agency accounting for nearly all activity and a small number of additional awards spread across two other agencies.
Agency mix and customer concentration
The DEFENSE HEALTH AGENCY (DHA) dominated the vendor’s activity, obligating 323.61 million across 37 awards, which represents the overwhelming share of total value. The remaining obligations were split between the ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE at 3.25 million across 7 awards and the CENTERS FOR DISEASE CONTROL AND PREVENTION at 111.23 thousand across 2 awards.
Industry profile based on NAICS activity
The award base is similarly concentrated by NAICS, led by 524114, DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS, at 323.61 million across 37 awards. Smaller activity appears under 624230, EMERGENCY AND OTHER RELIEF SERVICES, and 524292, PHARMACY BENEFIT MANAGEMENT AND OTHER THIRD PARTY ADMINISTRATION OF INSURANCE AND PENSION FUNDS, indicating a procurement footprint centered on health coverage and related support services.
Annual contract trend over the analysis window
The annual trend shows all recorded obligated value in 2025, totaling 326.97 million across 46 awards. With only one year in the analysis window, the data supports a point-in-time view rather than a multi-year growth or decline assessment.
How to interpret this page
This summary uses FPDS award records associated with CAGE 1WPW1 and UEI QKNTMFZFR6E9 for the last full year. Totals, counts, and averages are derived from obligated dollars only; agency and NAICS summaries reflect the provided ranked breakdowns, and the trend section reflects the annual aggregation supplied for 2025.
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 = '1WPW1'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 97DH | DEFENSE HEALTH AGENCY (DHA) | 323,608,120.97 | 323.61 million | 37 |
| 7505 | ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE | 3,248,364.19 | 3.25 million | 7 |
| 7523 | CENTERS FOR DISEASE CONTROL AND PREVENTION | 111,233.28 | 111.23 thousand | 2 |
Insight
Over the last full year, EXPRESS SCRIPTS, INC. received $326.97 million across 46 awards, with obligations highly concentrated at the Defense Health Agency. DHA accounted for $323.61 million and 37 awards, representing nearly all obligated dollars in this period. The remaining activity was limited to the Administration for Strategic Preparedness and Response at $3.25 million across 7 awards and the Centers for Disease Control and Prevention at $111.23 thousand across 2 awards, indicating a narrow, DHA-dominant federal 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 = '1WPW1'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 524114 | DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS | 323,608,120.97 | 323.61 million | 37 |
| 624230 | EMERGENCY AND OTHER RELIEF SERVICES | 3,248,364.19 | 3.25 million | 7 |
| 524292 | PHARMACY BENEFIT MANAGEMENT AND OTHER THIRD PARTY ADMINISTRATION OF INSURANCE AND PENSION FUNDS | 111,233.28 | 111.23 thousand | 2 |
Insight
EXPRESS SCRIPTS, INC. shows strong NAICS concentration in 524114, with $323.61 million obligated across 37 awards, representing nearly all of the vendor’s $326.97 million total obligated over the last full year. The remaining obligations are limited to 624230 at $3.25 million across 7 awards and 524292 at $111.23 thousand across 2 awards, indicating a sharply skewed award distribution. This pattern suggests the vendor’s federal activity in the period was overwhelmingly associated with direct health and medical insurance carrier work, with only marginal award volume in other NAICS 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 = '1WPW1'
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 DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 326,967,718.44 | 326.97 million | 46 |
Insight
In the last full year, EXPRESS SCRIPTS, INC. (CAGE 1WPW1) recorded $326.97 million in obligated value across 46 awards, for an average award value of $7.11 million. Obligation activity is fully concentrated in a single year in the available 1-year window, so no year-over-year trend can be assessed from this view. The award profile indicates moderate award count with relatively high dollar concentration at the vendor level.
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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.