Federal Contractor

TRIWEST HEALTHCARE ALLIANCE CORP. Federal Contract Obligations (Last 5 Years)

Federal procurement profile for TRIWEST HEALTHCARE ALLIANCE CORP. showing last 5 years of obligations, awards, and agency and NAICS concentration.

TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3, UEI J7M9HPTGJ1S9) recorded $44.12 billion in obligated awards across 468 actions in the last 5 years, with an average action value of $94.28 million. Activity is concentrated in the Department of Veterans Affairs and the Defense Health Agency, and most obligations fall under NAICS 524114 and 621111.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the stated analysis window and may include a small negative obligation in one agency and NAICS line item.

CAGE Code
07TQ3
UEI
J7M9HPTGJ1S9
Total Obligated
44.12 billion
44,123,493,197.79
Award Actions
468
Average Action Value
94,280,968.37

About TRIWEST HEALTHCARE ALLIANCE CORP. federal contract activity

TRIWEST HEALTHCARE ALLIANCE CORP. recorded $44.12 billion in obligated awards across 468 actions in the last 5 years, with an average award value of $94.28 million. Its federal activity is heavily concentrated in health-related contracting, indicating a large, sustained role in administering or supporting government healthcare programs.

Agency mix and customer concentration

The Department of Veterans Affairs accounts for the overwhelming majority of obligation volume at $38.92 billion across 306 awards, making it the primary customer by a wide margin. The Defense Health Agency is the only other major source of obligation at $5.20 billion across 161 awards, while the Defense Human Resources Activity appears only once with a small negative obligation, which is likely a deobligation or adjustment rather than a standalone program driver.

Industry profile based on NAICS activity

NAICS 524114, Direct Health and Medical Insurance Carriers, dominates the profile with $39.75 billion and 258 awards, showing that most obligations fall under health plan or insurance carrier activity. Additional volume is concentrated in NAICS 621111 at $3.22 billion and NAICS 524292 at $1.15 billion, reinforcing a mix centered on physician services and third-party insurance or benefits administration; the small negative amount in NAICS 624190 again suggests an adjustment entry.

Annual contract trend over the analysis window

Annual obligations rose from $3.23 billion in 2021 to $7.30 billion in 2022 and $9.44 billion in 2023, then remained elevated at $9.66 billion in 2024. The peak in the analysis window occurred in 2025 at $14.50 billion, alongside 119 awards, matching the 2024 award count and indicating materially higher dollar concentration in the most recent year.

How to interpret this page

This summary uses FPDS-observed obligations for the last 5 years and aggregates activity by vendor, agency, NAICS, and fiscal year. Obligations may include negative values from deobligations or corrections, so totals should be read as net obligated amounts rather than gross award value.

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 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
3600 VETERANS AFFAIRS, DEPARTMENT OF 38,923,927,150.84 38.92 billion 306
97DH DEFENSE HEALTH AGENCY (DHA) 5,199,618,099.00 5.20 billion 161
9748 DEFENSE HUMAN RESOURCES ACTIVITY -52,052.05 -52.05 thousand 1

Insight

Over the last 5 years, TRIWEST HEALTHCARE ALLIANCE CORP. received $44.12 billion across 468 awards, with obligations highly concentrated in the Department of Veterans Affairs. VA accounted for $38.92 billion and 306 awards, or the clear majority of both dollars and transactions. The Defense Health Agency was the second-largest customer at $5.20 billion across 161 awards, while Defense Human Resources Activity had a single de minimis negative obligation of $52.05 thousand.

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 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 39,748,580,215.07 39.75 billion 258
621111 OFFICES OF PHYSICIANS (EXCEPT MENTAL HEALTH SPECIALISTS) 3,220,735,050.24 3.22 billion 136
524292 PHARMACY BENEFIT MANAGEMENT AND OTHER THIRD PARTY ADMINISTRATION OF INSURANCE AND PENSION FUNDS 1,154,229,984.53 1.15 billion 73
624190 OTHER INDIVIDUAL AND FAMILY SERVICES -52,052.05 -52.05 thousand 1

Insight

Over the last 5 years, TRIWEST HEALTHCARE ALLIANCE CORP.’s obligations are highly concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, which accounts for 39.75 billion of 44.12 billion total obligated across 258 awards. The next largest categories—NAICS 621111 and 524292—add 3.22 billion and 1.15 billion, respectively, indicating a strong secondary presence in physician office services and third-party insurance administration. NAICS 624190 is immaterial at a negative 52.05 thousand on one award, suggesting a minor deobligation rather than a meaningful contracting line of business.

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 5 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
2024 9,658,350,133.12 9.66 billion 119
2023 9,442,652,671.81 9.44 billion 56
2022 7,296,117,485.15 7.30 billion 66
2021 3,228,252,084.26 3.23 billion 108

Insight

TRIWEST HEALTHCARE ALLIANCE CORP. (CAGE 07TQ3) obligated $44.12 billion across 468 awards over the last 5 years, averaging $94.28 million per award. Obligations increased sharply in 2025 to $14.50 billion, up from $9.66 billion in 2024 and $3.23 billion in 2021, indicating a strong upward trend over the period. Award volume was highest in 2021, 2024, and 2025 at 108, 119, and 119 awards, while 2023 had the fewest awards at 56 despite $9.44 billion obligated, reflecting a concentration of dollars in fewer actions that year.

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.