Federal Contractor

NORIDIAN HEALTHCARE SOLUTIONS, LLC Federal Contract Obligations (Last 10 Years)

Federal procurement profile for NORIDIAN HEALTHCARE SOLUTIONS, LLC (CAGE 3EN02, UEI S9LBFM3QCED8) covering obligations and award activity over the last 10 years.

NORIDIAN HEALTHCARE SOLUTIONS, LLC recorded 577 award actions with total obligated funding of $2,145,581,513.81 and an average action value of $3,718,512.15. Most activity was with the Centers for Medicare and Medicaid Services, and the largest NAICS category was 524114, Direct Health and Medical Insurance Carriers.

Generated at 03/21/2026

Analysis period: Last 10 years

Amounts reflect obligated dollars in the selected 10-year analysis window and may include minor negative adjustments.

CAGE Code
3EN02
UEI
S9LBFM3QCED8
Total Obligated
2.15 billion
2,145,581,513.81
Award Actions
577
Average Action Value
3,718,512.15

About NORIDIAN HEALTHCARE SOLUTIONS, LLC federal contract activity

NORIDIAN HEALTHCARE SOLUTIONS, LLC (CAGE 3EN02, UEI S9LBFM3QCED8) recorded 577 awards totaling $2.15 billion over the last 10 years, with an average award value of $3.72 million. The profile is highly concentrated, with essentially all obligated dollars flowing through a single civilian healthcare payer relationship.

Agency mix and customer concentration

The CENTERS FOR MEDICARE AND MEDICAID SERVICES accounts for $2.14 billion across 574 awards, or nearly the entire vendor total. Activity outside CMS is minimal, limited to two awards from the CENTERS FOR DISEASE CONTROL AND PREVENTION totaling $1.20 million and one small negative obligation associated with the VETERANS AFFAIRS, DEPARTMENT OF.

Industry profile based on NAICS activity

Procurement activity is dominated by NAICS 524114, DIRECT HEALTH AND MEDICAL INSURANCE CARRIERS, which represents $1.77 billion across 525 awards. The next largest category, 541990, ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES, adds $370.53 million across 37 awards, while smaller obligations appear in 524298, 541512, and 561499.

Annual contract trend over the analysis window

Annual obligations were strongest in 2021, 2022, 2024, and 2025, each exceeding $270 million, with 2024 the peak year at $305.73 million. 2023 shows a notable contraction to $117.14 million before recovery in the following years, indicating volatility rather than a steady growth pattern.

How to interpret this page

This summary is based on FPDS-observed obligations for the last 10 years and reflects award counts, obligated dollars, and category distributions tied to the vendor's CAGE code and UEI. Totals may include deobligations, which can produce small negative values in agency or NAICS slices.

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 = '3EN02'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
7530 CENTERS FOR MEDICARE AND MEDICAID SERVICES 2,144,394,488.28 2.14 billion 574
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 1,196,265.53 1.20 million 2
3600 VETERANS AFFAIRS, DEPARTMENT OF -9,240.00 -9.24 thousand 1

Insight

Over the last 10 years, NORIDIAN HEALTHCARE SOLUTIONS, LLC’s obligations are overwhelmingly concentrated with the Centers for Medicare and Medicaid Services, which accounts for $2.14 billion of the vendor’s $2.15 billion total across 574 of 577 awards. The remaining activity is minimal and dispersed, with small obligations from the Centers for Disease Control and Prevention ($1.20 million across 2 awards) and a single Department of Veterans Affairs award reflecting a negative obligation of $9,240. This profile indicates a highly concentrated federal customer base with 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 = '3EN02'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 1,771,789,789.18 1.77 billion 525
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 370,528,425.46 370.53 million 37
524298 ALL OTHER INSURANCE RELATED ACTIVITIES 2,076,273.64 2.08 million 12
541512 COMPUTER SYSTEMS DESIGN SERVICES 1,196,265.53 1.20 million 2
561499 ALL OTHER BUSINESS SUPPORT SERVICES -9,240.00 -9.24 thousand 1

Insight

Over the last 10 years, NORIDIAN HEALTHCARE SOLUTIONS, LLC’s obligations are highly concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, which accounts for $1.77 billion of the $2.15 billion total obligated across 525 of 577 awards. The next largest category, NAICS 541990, All Other Professional, Scientific, and Technical Services, represents $370.53 million across 37 awards, indicating a much smaller secondary line of business. The remaining NAICS categories are immaterial by comparison, each under $2.1 million, with one minor negative obligation under NAICS 561499.

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 = '3EN02'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 271,126,221.59 271.13 million 57
2024 305,726,831.82 305.73 million 63
2023 117,141,309.52 117.14 million 68
2022 278,278,805.01 278.28 million 79
2021 308,907,343.88 308.91 million 55
2020 245,902,485.76 245.90 million 59
2019 229,105,316.21 229.11 million 70
2018 196,688,017.89 196.69 million 74
2017 192,705,182.13 192.71 million 52

Insight

Over the last 10 years, NORIDIAN HEALTHCARE SOLUTIONS, LLC (CAGE 3EN02) obligated $2.15 billion across 577 awards, averaging $3.72 million per award. Annual obligations are concentrated in a fairly narrow band between about $117.14 million and $308.91 million, indicating sustained funding rather than a single dominant spike. The highest obligation years were 2021 ($308.91 million) and 2024 ($305.73 million), while 2023 is a notable low point at $117.14 million; award counts remained relatively steady, ranging from 52 to 79 per 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.