NOVITAS SOLUTIONS, INC shows a concentrated federal procurement profile centered on the Centers for Medicare and Medicaid Services, which accounts for the full recorded obligation in this 5-year window. Most obligations fall under NAICS 524114, Direct Health and Medical Insurance Carriers, with smaller activity in professional, scientific, and technical services and third-party administration.
Federal Contractor
NOVITAS SOLUTIONS, INC Federal Contract Obligations (Last 5 Years)
NOVITAS SOLUTIONS, INC (CAGE 4KGW8, UEI PLHWY41UW5V3) received $1.23 billion across 225 federal award actions in the last 5 years, primarily from the Centers for Medicare and Medicaid Services.
Annual obligations ranged from $188.41 million in 2023 to $307.70 million in 2024, with 2025 totaling $229.88 million through the current period.
About NOVITAS SOLUTIONS, INC federal contract activity
NOVITAS SOLUTIONS, INC (CAGE 4KGW8, UEI PLHWY41UW5V3) recorded 225 FPDS awards totaling $1.23 billion over the last 5 years, with an average award value of $5.47 million. The profile is highly concentrated, indicating one dominant federal customer and a recurring contract relationship rather than a broad multi-agency footprint.
Agency mix and customer concentration
All obligated dollars in the analysis window were awarded by the Centers for Medicare and Medicaid Services (agency 7530), which accounted for 225 awards and the full $1.23 billion in obligations. This level of concentration points to near-exclusive dependence on a single agency and limited exposure to other federal demand streams.
Industry profile based on NAICS activity
The vendor’s obligations are led overwhelmingly by NAICS 524114, Direct Health and Medical Insurance Carriers, at $1.18 billion across 190 awards, making it the core operating category in this dataset. Smaller volumes appear in NAICS 541990 ($46.23 million, 19 awards) and NAICS 524292 ($5.80 million, 16 awards), suggesting ancillary work outside the primary insurance-services lane.
Annual contract trend over the analysis window
Annual obligations were highest in 2024 at $307.70 million, followed by 2021 at $260.44 million and 2022 at $243.46 million; 2025 has reached $229.88 million to date. The lowest year in the window was 2023 at $188.41 million, indicating a dip before a rebound in 2024 and sustained activity into 2025. Award counts moved in a similar range, peaking at 61 in 2023 and remaining active across all five years.
How to interpret this page
This summary is based on FPDS award records for the last 5 years and reflects obligated dollars, award counts, and observed NAICS and agency distributions associated with the vendor identifiers provided. Figures are reported as captured in the dataset and may include multiple awards, modifications, or task-level actions depending on the underlying FPDS record structure.
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 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,229,888,379.65 | 1.23 billion | 225 |
Insight
Over the last 5 years, NOVITAS SOLUTIONS, INC (CAGE 4KGW8) received $1.23 billion across 225 awards, for an average award value of about $5.47 million. All obligated dollars in this section are concentrated with the Centers for Medicare and Medicaid Services (agency 7530), indicating complete agency dependence in the reported period. This level of concentration suggests the vendor’s federal contract activity was entirely driven by a single agency relationship rather than a diversified agency base.
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 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,177,856,822.01 | 1.18 billion | 190 |
| 541990 | ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES | 46,234,480.26 | 46.23 million | 19 |
| 524292 | PHARMACY BENEFIT MANAGEMENT AND OTHER THIRD PARTY ADMINISTRATION OF INSURANCE AND PENSION FUNDS | 5,797,077.38 | 5.80 million | 16 |
Insight
Over the last 5 years, NOVITAS SOLUTIONS, INC’s obligations are highly concentrated in NAICS 524114, which accounts for 1.18 billion of 1.23 billion total obligated across 190 of 225 awards. The remaining obligations are distributed across a much smaller set of activities, led by NAICS 541990 at 46.23 million across 19 awards and NAICS 524292 at 5.80 million across 16 awards. This pattern indicates a strong primary reliance on direct health and medical insurance carrier work, with limited diversification into adjacent professional and insurance administration 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 5 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 |
Insight
Over the last 5 years, NOVITAS SOLUTIONS, INC (CAGE 4KGW8) obligated $1.23 billion across 225 awards, averaging $5.47 million per award. Annual obligations were relatively elevated and fairly balanced from 2021 to 2024, ranging from $188.41 million to $307.70 million, with the peak in 2024 and the lowest total in 2023. In 2025, obligations declined to $229.88 million across 31 awards, indicating a lower current-year pace relative to the prior two years.
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.