In the last full year, TRIWEST HEALTHCARE ALLIANCE CORP. recorded 119 award actions totaling 14,498,120,823.45 in obligations, with an average action value of 121,832,948.09. Most of that activity came from the Department of Veterans Affairs and the Defense Health Agency, and the spending was concentrated in direct health and medical insurance carrier work under NAICS 524114.
Federal Contractor
TRIWEST HEALTHCARE ALLIANCE CORP. Federal Contract Obligations (Last Year)
Federal procurement profile for TRIWEST HEALTHCARE ALLIANCE CORP. showing last full year obligations, award counts, and top funding agencies and NAICS categories.
Figures are based on the specified analysis window and reflect readable and exact obligation totals, award counts, and category rollups as provided.
About TRIWEST HEALTHCARE ALLIANCE CORP. federal contract activity
TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3, UEI J7M9HPTGJ1S9) recorded 119 awards and $14.50 billion in obligated dollars in the last full year, for an average award value of $121.83 million. The vendor’s award profile is large-scale and concentrated, indicating a small number of high-value obligations rather than a broad distribution of small awards.
Agency mix and customer concentration
The Department of Veterans Affairs dominated obligations to this vendor with $9.72 billion across 36 awards, accounting for the majority of total dollars. The Defense Health Agency contributed the remaining $4.78 billion across 83 awards, indicating a two-agency concentration with materially different award volumes but both at very high dollar values.
Industry profile based on NAICS activity
Award dollars were overwhelmingly associated with NAICS 524114, Direct Health and Medical Insurance Carriers, which represented $14.18 billion across 102 awards. NAICS 524292, Pharmacy Benefit Management and Other Third Party Administration of Insurance and Pension Funds, accounted for a much smaller $314.16 million across 17 awards, showing that the vendor’s federal contracting activity is concentrated in health insurance administration rather than broader adjacent services.
Annual contract trend over the analysis window
The annual trend provided only one year, 2025, which captured the full $14.50 billion and all 119 awards in the analysis window. With a single-year view, the data supports a point-in-time assessment of volume and concentration, but it does not show growth or decline across multiple years.
How to interpret this page
This summary is based on FPDS-obligated dollars and award counts for the last full year tied to the vendor’s CAGE code 07TQ3 and UEI J7M9HPTGJ1S9. Agency and NAICS concentrations are derived from the provided top-level distributions only; no additional FPDS fields, subcontracting data, or out-of-scope sources were used.
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 = '07TQ3'
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 |
|---|---|---|---|---|
| 3600 | VETERANS AFFAIRS, DEPARTMENT OF | 9,717,994,871.45 | 9.72 billion | 36 |
| 97DH | DEFENSE HEALTH AGENCY (DHA) | 4,780,125,952.00 | 4.78 billion | 83 |
Insight
TRIWEST HEALTHCARE ALLIANCE CORP. received $14.50 billion in obligations across 119 awards during the last full year, with spending concentrated in two agencies. The Department of Veterans Affairs accounted for $9.72 billion across 36 awards, or about two-thirds of total obligations, indicating a strong concentration in that customer relationship. The Defense Health Agency obligated $4.78 billion across 83 awards, representing the remaining share and a higher award count but lower average value than VA, suggesting a more distributed award pattern within DHA.
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 = '07TQ3'
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 | 14,183,963,399.98 | 14.18 billion | 102 |
| 524292 | PHARMACY BENEFIT MANAGEMENT AND OTHER THIRD PARTY ADMINISTRATION OF INSURANCE AND PENSION FUNDS | 314,157,423.47 | 314.16 million | 17 |
Insight
TRIWEST HEALTHCARE ALLIANCE CORP. shows a highly concentrated NAICS profile in the last full year, with NAICS 524114 accounting for 14.18 billion of 14.50 billion total obligated, or about 97.8 percent, across 102 of 119 awards. NAICS 524292 is a secondary activity category, totaling 314.16 million across 17 awards, which represents roughly 2.2 percent of obligated dollars. Overall, the vendor’s obligations are overwhelmingly concentrated in direct health and medical insurance carrier activity, with limited diversification into third-party administration.
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 = '07TQ3'
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 | 14,498,120,823.45 | 14.50 billion | 119 |
Insight
In the last full year, TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3) obligated $14.50 billion across 119 awards, indicating a highly concentrated annual volume. The average award value was approximately $121.8 million, suggesting that obligations were distributed across relatively large individual awards rather than numerous small actions. With only one year reported in this window, the data supports a point-in-time assessment of substantial obligation activity, but not a multi-year trend comparison.
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.