Federal Contractor

NATIONAL GOVERNMENT SERVICES, INC. Federal Contract Obligations (Last Year)

NATIONAL GOVERNMENT SERVICES, INC. (CAGE 3NKX7, UEI TJNDFEALGTB5) recorded 41 award actions and $291,750,586.95 in obligations in the last full year, primarily from the Centers for Medicare and Medicaid Services.

In the last full year, NATIONAL GOVERNMENT SERVICES, INC. received $291.75 million across 41 award actions, with all reported obligations tied to the Centers for Medicare and Medicaid Services. Most of the spending was classified under Direct Health and Medical Insurance Carriers, with additional obligations in computer systems design and related services.

Generated at 03/21/2026

Analysis period: Last full year

Annual totals reflect the provided FPDS analysis window and may include a negative obligation adjustment in NAICS 518210.

CAGE Code
3NKX7
UEI
TJNDFEALGTB5
Total Obligated
291.75 million
291,750,586.95
Award Actions
41
Average Action Value
7,115,867.97

About NATIONAL GOVERNMENT SERVICES, INC. federal contract activity

NATIONAL GOVERNMENT SERVICES, INC. (CAGE 3NKX7, UEI TJNDFEALGTB5) recorded $291.75 million in obligated value across 41 awards during the last full year, for an average award value of $7.12 million. The award profile indicates a concentrated federal revenue base rather than a broad, multi-agency footprint.

Agency mix and customer concentration

All observed obligations were placed by the Centers for Medicare and Medicaid Services, which accounted for the full $291.75 million across 41 awards. This indicates complete agency concentration in the measured period and no meaningful diversification across federal buyers.

Industry profile based on NAICS activity

The portfolio was dominated by NAICS 524114, Direct Health and Medical Insurance Carriers, with $204.78 million across 25 awards, followed by NAICS 541512, Computer Systems Design Services, with $74.03 million across 4 awards. Smaller activity appeared in NAICS 541519, Other Computer Related Services, at $14.05 million across 11 awards, while NAICS 518210 showed a negative obligated value of $1.11 million, which may reflect downward adjustments or deobligations.

Annual contract trend over the analysis window

Annual activity for 2025 totals $291.75 million across 41 awards, and no other years are present in the analysis window. Because the window contains only one year, it supports level-of-activity reporting but does not show a multi-year trend or direction of change.

How to interpret this page

This summary is based on FPDS obligations associated with the vendor’s CAGE code and UEI during the last full year. Totals reflect obligated dollars and award counts as provided; negative obligated values are preserved as reported and may represent deobligations or other accounting 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 = '3NKX7'
        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 291,750,586.95 291.75 million 41

Insight

Over the last full year, NATIONAL GOVERNMENT SERVICES, INC. (CAGE 3NKX7) received 291.75 million in obligations across 41 awards, with an average award value of 7.12 million. All reported obligations were concentrated at a single agency, the Centers for Medicare and Medicaid Services (Agency 7530), which accounted for 100% of obligated dollars and award activity in this window. This indicates a highly concentrated funding profile with no diversification across agencies in the period reviewed.

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 = '3NKX7'
        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 204,781,933.00 204.78 million 25
541512 COMPUTER SYSTEMS DESIGN SERVICES 74,029,069.78 74.03 million 4
541519 OTHER COMPUTER RELATED SERVICES 14,047,862.67 14.05 million 11
518210 COMPUTING INFRASTRUCTURE PROVIDERS, DATA PROCESSING, WEB HOSTING, AND RELATED SERVICES -1,108,278.50 -1.11 million 1

Insight

Over the last full year, NATIONAL GOVERNMENT SERVICES, INC. (CAGE 3NKX7) received $291.75 million across 41 awards, with obligations concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, which accounted for $204.78 million across 25 awards. The next largest category was NAICS 541512, Computer Systems Design Services, at $74.03 million across 4 awards, indicating a smaller number of higher-dollar actions outside the primary health insurance line of business. NAICS 541519, Other Computer Related Services, added $14.05 million across 11 awards, while NAICS 518210 posted a net negative obligation of $1.11 million on 1 award, reflecting minimal activity in that category.

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 = '3NKX7'
        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 291,750,586.95 291.75 million 41

Insight

During the last full year, NATIONAL GOVERNMENT SERVICES, INC. (CAGE 3NKX7) obligated $291.75 million across 41 awards, averaging $7.12 million per award. The activity is fully concentrated in a single year in the provided 1-year window, indicating no observable multi-year trend within this view. This pattern reflects a relatively high dollar concentration across a moderate number of awards.

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.