Federal Contractor

NOVITAS SOLUTIONS, INC Federal Contract Obligations (Last 10 Years)

NOVITAS SOLUTIONS, INC (CAGE 4KGW8, UEI PLHWY41UW5V3) has received $2.08 billion across 361 federal award actions in the last 10 years.

The vendor’s federal work is concentrated with the Centers for Medicare and Medicaid Services, which accounts for the full $2.08 billion obligated in the analysis window. Most obligations fall under NAICS 524114, Direct Health and Medical Insurance Carriers, with smaller activity in professional and technical services and third-party administration.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligations have ranged from $188.41 million in 2023 to $307.70 million in 2024, with 2025 currently at $229.88 million across 31 actions.

CAGE Code
4KGW8
UEI
PLHWY41UW5V3
Total Obligated
2.08 billion
2,080,994,620.98
Award Actions
361
Average Action Value
5,764,528.03

About NOVITAS SOLUTIONS, INC federal contract activity

NOVITAS SOLUTIONS, INC (CAGE 4KGW8, UEI PLHWY41UW5V3) recorded $2.08 billion in obligated awards across 361 actions over the last 10 years, for an average award value of $5.76 million. The spending profile is highly concentrated, indicating a sustained, large-scale federal relationship rather than a broad distribution of small awards.

Agency mix and customer concentration

All recorded obligations in the analysis window came from the Centers for Medicare and Medicaid Services, which accounted for the full $2.08 billion and all 361 awards. This concentration shows the vendor’s federal activity is tied to a single buying agency, with no observed diversification across other agencies in the provided data.

Industry profile based on NAICS activity

Award activity is dominated by NAICS 524114, Direct Health and Medical Insurance Carriers, which represents $2.02 billion and 311 awards. Smaller portions of obligations fall under NAICS 541990 and 524292, suggesting the vendor’s work is primarily aligned to health insurance administration with some ancillary professional and insurance administration services.

Annual contract trend over the analysis window

Annual obligations remain elevated but uneven across the reported years, ranging from $188.41 million in 2023 to $307.70 million in 2024. The 2025 figure of $229.88 million indicates continued material activity, while the sequence from 2021 through 2024 shows significant year-to-year volatility rather than a steady linear increase.

How to interpret this page

This summary is based on FPDS Query award records associated with CAGE 4KGW8 and UEI PLHWY41UW5V3 over the last 10 years. Totals reflect obligated dollars and award counts as provided in the source data, with agency, NAICS, and annual views limited to the records included in the analysis 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 = '4KGW8'
        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,080,994,620.98 2.08 billion 361

Insight

Over the last 10 years, NOVITAS SOLUTIONS, INC. shows complete obligation concentration with 100% of reported spending, or $2.08 billion across 361 awards, attributable to the Centers for Medicare and Medicaid Services (agency 7530). This indicates a highly concentrated agency relationship rather than a diversified federal customer base. The average award value of about $5.76 million suggests a portfolio of recurring mid-sized obligations within a single agency channel.

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 = '4KGW8'
        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 2,022,262,382.01 2.02 billion 311
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 46,234,480.26 46.23 million 19
524292 THIRD PARTY ADMINISTRATION OF INSURANCE AND PENSION FUNDS 12,497,758.71 12.50 million 31

Insight

Over the last 10 years, NOVITAS SOLUTIONS, INC (CAGE 4KGW8) has received $2.08 billion across 361 awards, with a high concentration in NAICS 524114, Direct Health and Medical Insurance Carriers, which accounts for $2.02 billion and 311 awards. The remaining obligated dollars are distributed across a much smaller set of categories, led by NAICS 541990 at $46.23 million across 19 awards and NAICS 524292 at $12.50 million across 31 awards. This pattern indicates a strong reliance on a single primary NAICS with limited diversification across other procurement activities.

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 = '4KGW8'
        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 229,884,936.54 229.88 million 31
2024 307,697,226.80 307.70 million 54
2023 188,413,948.31 188.41 million 61
2022 243,456,304.00 243.46 million 37
2021 260,435,964.00 260.44 million 42
2020 240,450,281.36 240.45 million 34
2019 228,183,001.00 228.18 million 36
2018 213,730,209.20 213.73 million 40
2017 168,742,749.77 168.74 million 25
2016 0.00 0.00 1

Insight

Over the last 10 years, NOVITAS SOLUTIONS, INC (CAGE 4KGW8) obligated $2.08 billion across 361 awards, averaging about $5.76 million per award. Annual obligations were concentrated in the 2020–2025 period, with each year exceeding $188 million and the peak occurring in 2024 at $307.70 million across 54 awards. Prior years were lower but still material, ranging from $168.74 million in 2017 to $260.44 million in 2021, while 2016 recorded no obligated value despite one award, indicating limited activity at the start of the period.

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.