Federal Contractor

NOVITAS SOLUTIONS, INC Federal Contract Obligations (Last Year)

NOVITAS SOLUTIONS, INC (CAGE 4KGW8, UEI PLHWY41UW5V3) received 31 federal award actions totaling $229.88 million in the last full year, all from the Centers for Medicare and Medicaid Services.

In the last full year, NOVITAS SOLUTIONS, INC was awarded $229,884,936.54 across 31 actions, for an average action value of $7.42 million. The spending was concentrated at the Centers for Medicare and Medicaid Services, with most obligations tied to NAICS 524114, Direct Health and Medical Insurance Carriers.

Generated at 03/21/2026

Analysis period: Last full year

Annual totals reflect the last full year reported on this page and may not include every contract modification in adjacent periods.

CAGE Code
4KGW8
UEI
PLHWY41UW5V3
Total Obligated
229.88 million
229,884,936.54
Award Actions
31
Average Action Value
7,415,643.11

About NOVITAS SOLUTIONS, INC federal contract activity

NOVITAS SOLUTIONS, INC (CAGE 4KGW8, UEI PLHWY41UW5V3) recorded $229.88 million in obligated contract spending across 31 awards in the last full year, for an average award value of $7.42 million. The profile reflects a relatively concentrated award base, with all recorded obligations occurring in the same analysis period.

Agency mix and customer concentration

All recorded obligations came from the CENTERS FOR MEDICARE AND MEDICAID SERVICES, which accounted for 100% of total obligated dollars and all 31 awards. This indicates a fully concentrated customer base in the observed period, with no diversification across other agencies in the available data.

Industry profile based on NAICS activity

The vendor’s obligations were dominated by NAICS 524114, Direct Health and Medical Insurance Carriers, which represented $202.33 million across 25 awards. Smaller portions were associated with NAICS 541990 at $25.93 million across 4 awards and NAICS 524292 at $1.63 million across 2 awards, showing a strong concentration in health insurance-related activity with limited spillover into adjacent services.

Annual contract trend over the analysis window

Annual activity in the last full year was recorded entirely in 2025, with $229.88 million obligated across 31 awards. Because the dataset covers only one year in the analysis window, it supports a point-in-time view rather than a multi-year growth assessment.

How to interpret this page

This summary is based on FPDS award-obligation data for NOVITAS SOLUTIONS, INC, filtered to the last full year. Dollar figures reflect total obligated amounts and award counts as reported in the provided dataset; no additional sources or unobserved transactions were used.

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 1 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 229,884,936.54 229.88 million 31

Insight

Over the last full year, NOVITAS SOLUTIONS, INC (CAGE 4KGW8) recorded $229.88 million in obligations across 31 awards, with an average award value of $7.42 million. Funding is fully concentrated with the Centers for Medicare and Medicaid Services, which accounts for 100% of obligated dollars and all reported awards in this period. This indicates a highly concentrated agency relationship with no diversification across other agencies in the measured window.

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 1 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 202,325,266.00 202.33 million 25
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 25,927,146.54 25.93 million 4
524292 PHARMACY BENEFIT MANAGEMENT AND OTHER THIRD PARTY ADMINISTRATION OF INSURANCE AND PENSION FUNDS 1,632,524.00 1.63 million 2

Insight

NOVITAS SOLUTIONS, INC’s last full year obligations were highly concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, which accounted for $202.33 million across 25 awards, or about 88% of total obligated dollars. The next largest category, NAICS 541990, contributed $25.93 million across 4 awards, while NAICS 524292 added $1.63 million across 2 awards. Overall, 31 awards generated $229.88 million, indicating a workload centered in a single dominant NAICS with limited diversification into related services.

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

Insight

In the last full year, NOVITAS SOLUTIONS, INC (CAGE 4KGW8) recorded $229.88 million in obligated value across 31 awards, for an average award value of $7.42 million. The annual trend is concentrated entirely in 2025 within the 1-year window, so there is no multi-year variation to assess from the provided data. The level of obligation is therefore driven by a relatively small number of awards with moderate average size, indicating a concentrated award profile for 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.