Federal Contractor

HEALTH NET FEDERAL SERVICES, LLC Federal Contract Obligations (Last 5 Years)

HEALTH NET FEDERAL SERVICES, LLC obligations over the last 5 years total 14.29 billion across 363 award actions, led by Defense Health Agency activity.

HEALTH NET FEDERAL SERVICES, LLC (CAGE 3TJW0, UEI F7NGF6NJFB96) recorded 14.29 billion in obligated federal procurement over the last 5 years, with an average action value of 39.38 million. Nearly all activity came from the Defense Health Agency, with smaller obligations from the Department of Veterans Affairs.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect readable FPDS obligation data for the 5-year analysis window and may differ slightly from rounded values shown in summary fields.

CAGE Code
3TJW0
UEI
F7NGF6NJFB96
Total Obligated
14.29 billion
14,294,285,882.32
Award Actions
363
Average Action Value
39,378,198.02

About HEALTH NET FEDERAL SERVICES, LLC federal contract activity

HEALTH NET FEDERAL SERVICES, LLC (CAGE 3TJW0, UEI F7NGF6NJFB96) received 363 FPDS-reported awards totaling 14.29 billion over the last 5 years, with an average award value of 39.38 million. The portfolio is highly concentrated, indicating a small number of agencies and requirements account for nearly all observed federal obligations.

Agency mix and customer concentration

DEFENSE HEALTH AGENCY (DHA) is the dominant buyer, accounting for 14.28 billion across 349 awards, or essentially the full measured federal spend. The only other material agency is the Department of Veterans Affairs, with 10.29 million across 14 awards, showing a limited but distinct secondary relationship.

Industry profile based on NAICS activity

The award profile is concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, which mirrors the DHA-driven obligation base at 14.28 billion and 349 awards. NAICS 621111, Offices of Physicians (Except Mental Health Specialists), represents the remaining 10.29 million across 14 awards, suggesting a small set of related health service obligations outside the primary insurance-carrier activity.

Annual contract trend over the analysis window

Annual obligations peaked in 2023 at 4.01 billion, remained elevated in 2024 at 2.99 billion, and were lower in 2025 at 425.23 million based on the current analysis window. The pattern shows sustained multi-billion-dollar spending from 2021 through 2024, with 2021 also notable for the highest award count at 111.

How to interpret this page

This summary is based on FPDS-observed obligations associated with CAGE 3TJW0 and UEI F7NGF6NJFB96 over the last 5 years. Totals, counts, agency and NAICS mixes, and annual trend values reflect the provided analysis set and should be interpreted as reported federal contract activity within that window.

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 = '3TJW0'
        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
97DH DEFENSE HEALTH AGENCY (DHA) 14,283,991,692.39 14.28 billion 349
3600 VETERANS AFFAIRS, DEPARTMENT OF 10,294,189.93 10.29 million 14

Insight

Over the last 5 years, HEALTH NET FEDERAL SERVICES, LLC received $14.29 billion across 363 awards, with an average award value of about $39.38 million. Obligations are overwhelmingly concentrated at the Defense Health Agency, which accounts for $14.28 billion and 349 awards, or nearly all vendor funding in the period. The Department of Veterans Affairs represents a much smaller secondary customer base at $10.29 million across 14 awards, indicating limited agency diversification.

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 = '3TJW0'
        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 14,283,991,692.39 14.28 billion 349
621111 OFFICES OF PHYSICIANS (EXCEPT MENTAL HEALTH SPECIALISTS) 10,294,189.93 10.29 million 14

Insight

Over the last 5 years, HEALTH NET FEDERAL SERVICES, LLC’s obligated dollars are overwhelmingly concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, which accounts for $14.28 billion across 349 awards and represents nearly all of the vendor’s $14.29 billion total obligated value. NAICS 621111, Offices of Physicians (Except Mental Health Specialists), is a minor secondary area with $10.29 million across 14 awards. This pattern indicates a highly concentrated award portfolio with limited diversification by NAICS code.

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 = '3TJW0'
        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 425,230,044.76 425.23 million 24
2024 2,992,749,165.36 2.99 billion 78
2023 4,006,215,707.84 4.01 billion 78
2022 3,301,466,162.18 3.30 billion 72
2021 3,568,624,802.18 3.57 billion 111

Insight

Over the last 5 years, HEALTH NET FEDERAL SERVICES, LLC obligated $14.29 billion across 363 awards, averaging $39.38 million per award, indicating a high-dollar, moderately dispersed contract portfolio. Obligations were concentrated in 2021-2024, with annual totals ranging from $2.99 billion to $4.01 billion and award counts ranging from 72 to 111. FY2023 was the peak year at $4.01 billion, while FY2025 shows a sharp partial-year decline to $425.23 million across 24 awards.

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.