Federal Contractor

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

NORIDIAN HEALTHCARE SOLUTIONS, LLC is a federal vendor with 322 award actions and $1.28 billion obligated over the last five years, primarily with CMS.

This page summarizes federal procurement activity for NORIDIAN HEALTHCARE SOLUTIONS, LLC, CAGE 3EN02, UEI S9LBFM3QCED8, during the last five years. Most obligations were awarded by the Centers for Medicare and Medicaid Services, with smaller activity from the Centers for Disease Control and Prevention.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect obligated amounts as provided for the analysis window and may include negative values from selected NAICS categories or deobligation adjustments.

CAGE Code
3EN02
UEI
S9LBFM3QCED8
Total Obligated
1.28 billion
1,281,180,511.82
Award Actions
322
Average Action Value
3,978,821.46

About NORIDIAN HEALTHCARE SOLUTIONS, LLC federal contract activity

NORIDIAN HEALTHCARE SOLUTIONS, LLC (CAGE 3EN02, UEI S9LBFM3QCED8) recorded $1.28 billion in obligated federal awards across 322 actions over the last 5 years, for an average award value of $3.98 million. The profile is highly concentrated, with the Centers for Medicare and Medicaid Services accounting for nearly all observed obligations.

Agency mix and customer concentration

The agency mix is overwhelmingly dominated by the Centers for Medicare and Medicaid Services, which represents 320 of 322 awards and $1.28 billion of total obligations. The Centers for Disease Control and Prevention contributed a much smaller $1.20 million across 2 awards, indicating only limited cross-agency activity.

Industry profile based on NAICS activity

NAICS 524114, Direct Health and Medical Insurance Carriers, is the primary funding category at $1.05 billion across 294 awards, showing the core work is aligned to health coverage administration. NAICS 541990 adds $234.28 million across 24 awards, while NAICS 541512 contributes $1.20 million across 2 awards; NAICS 524298 shows negative obligations of $4.23 million across 2 awards, suggesting deobligations or adjustments in that category.

Annual contract trend over the analysis window

Annual obligations were strongest in 2021 and 2024, at $308.91 million and $305.73 million respectively, with 2025 through the analysis date at $271.13 million. The lowest year in the series was 2023 at $117.14 million, while award counts remained relatively stable, ranging from 55 to 79 actions per year.

How to interpret this page

This summary uses FPDS-observed obligations for the last 5 years and aggregates awards by vendor identifiers, agency, NAICS, and fiscal year. Totals reflect obligated dollars as reported in the dataset, and negative values are preserved where the source records deobligations or adjustments.

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 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
7530 CENTERS FOR MEDICARE AND MEDICAID SERVICES 1,279,984,246.29 1.28 billion 320
7523 CENTERS FOR DISEASE CONTROL AND PREVENTION 1,196,265.53 1.20 million 2

Insight

Over the last 5 years, NORIDIAN HEALTHCARE SOLUTIONS, LLC’s obligations are overwhelmingly concentrated at the Centers for Medicare and Medicaid Services, which accounts for $1.28 billion across 320 awards. The Centers for Disease Control and Prevention represents a negligible share by comparison, with $1.20 million across 2 awards. This distribution indicates a highly concentrated agency relationship, with virtually all obligated funding flowing through CMS.

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 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 1,049,935,507.19 1.05 billion 294
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 234,280,487.46 234.28 million 24
541512 COMPUTER SYSTEMS DESIGN SERVICES 1,196,265.53 1.20 million 2
524298 ALL OTHER INSURANCE RELATED ACTIVITIES -4,231,748.36 -4.23 million 2

Insight

Over the last 5 years, NORIDIAN HEALTHCARE SOLUTIONS, LLC’s obligations are heavily concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, which accounts for $1.05 billion across 294 awards, or the large majority of the vendor’s $1.28 billion total. NAICS 541990, All Other Professional, Scientific, and Technical Services, is the only other material category, with $234.28 million across 24 awards; the remaining NAICS codes are minimal by comparison. The portfolio is therefore highly concentrated in health insurance carrier work, with limited diversification into adjacent professional and technical services and other insurance-related activity.

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 5 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

Insight

Over the last 5 years, NORIDIAN HEALTHCARE SOLUTIONS, LLC (CAGE 3EN02) obligated $1.28 billion across 322 awards, averaging $3.98 million per award. Obligations are relatively concentrated in 2021, 2022, and 2024, each above $278 million, with the low point in 2023 at $117.14 million. Activity also varies by award count, peaking in 2022 at 79 awards and remaining moderate in other years, indicating uneven annual funding distribution rather than a steady trajectory.

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.