Federal Contractor

PALMETTO GBA, LLC Federal Contract Obligations (Last Year)

PALMETTO GBA, LLC received 55 federal award actions totaling $351.85 million in the last full year, led by work for CMS and the Railroad Retirement Board.

PALMETTO GBA, LLC (CAGE 3EYS4, UEI CFLDECZBMDV6) recorded $351,845,581.33 in obligated federal awards across 55 actions in the last full year. Most obligations came from the Centers for Medicare and Medicaid Services, with additional funding from the Railroad Retirement Board, and the largest NAICS category was 524114, Direct Health and Medical Insurance Carriers.

Generated at 03/21/2026

Analysis period: Last full year

Figures reflect the last full year and are based on readable obligated amounts, with agency and NAICS totals shown as reported in the provided data.

CAGE Code
3EYS4
UEI
CFLDECZBMDV6
Total Obligated
351.85 million
351,845,581.33
Award Actions
55
Average Action Value
6,397,192.38

About PALMETTO GBA, LLC federal contract activity

PALMETTO GBA, LLC recorded 351.85 million in obligations across 55 FPDS awards in the last full year, for an average award value of 6.40 million. The activity profile indicates a high-volume, high-dollar contract base with obligations concentrated in a limited number of federal buyers.

Agency mix and customer concentration

The Centers for Medicare and Medicaid Services accounted for 333.80 million across 47 awards, or the clear majority of obligated dollars and transactions. The Railroad Retirement Board contributed the remaining 18.04 million across 8 awards, showing a much smaller secondary relationship and a highly concentrated agency mix.

Industry profile based on NAICS activity

NAICS 524114, Direct Health and Medical Insurance Carriers, dominated the vendor's award profile with 300.14 million across 26 awards, indicating core work aligned to health insurance administration and related services. The remaining obligations were distributed across administrative, professional services, and IT-related categories, including NAICS 923130, 541990, 518210, and 541519, each representing materially smaller portions of total spend.

Annual contract trend over the analysis window

The annual trend shows all recorded obligations in 2025, totaling 351.85 million across 55 awards. With only one year in the analysis window, the data supports a snapshot view of recent spending rather than a multi-year growth or contraction assessment.

How to interpret this page

This summary is based on FPDS obligations attributed to PALMETTO GBA, LLC using the provided CAGE code 3EYS4 and UEI CFLDECZBMDV6 over the last full year. Agency and NAICS mix are derived from award-level obligated dollars and counts, and the annual trend reflects totals aggregated by fiscal year within the same 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 = '3EYS4'
        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 333,800,696.22 333.80 million 47
6000 RAILROAD RETIREMENT BOARD 18,044,885.11 18.04 million 8

Insight

During the last full year, PALMETTO GBA, LLC received $351.85 million across 55 awards, with obligations highly concentrated in the Centers for Medicare and Medicaid Services. CMS accounted for $333.80 million and 47 awards, representing about 95% of total obligated dollars and the clear dominant funding source. The Railroad Retirement Board represented the remaining $18.04 million across 8 awards, indicating a much smaller secondary relationship and limited agency diversification.

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 = '3EYS4'
        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 300,136,220.00 300.14 million 26
923130 ADMINISTRATION OF HUMAN RESOURCE PROGRAMS (EXCEPT EDUCATION, PUBLIC HEALTH, AND VETERANS' AFFAIRS PROGRAMS) 18,485,251.83 18.49 million 5
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 15,369,017.44 15.37 million 8
518210 COMPUTING INFRASTRUCTURE PROVIDERS, DATA PROCESSING, WEB HOSTING, AND RELATED SERVICES 13,625,005.00 13.63 million 4
541519 OTHER COMPUTER RELATED SERVICES 5,033,203.00 5.03 million 2
611691 EXAM PREPARATION AND TUTORING -362,749.22 -362.75 thousand 7
923120 ADMINISTRATION OF PUBLIC HEALTH PROGRAMS -440,366.72 -440.37 thousand 3

Insight

PALMETTO GBA, LLC’s obligations are highly concentrated in NAICS 524114, Direct Health and Medical Insurance Carriers, which accounts for $300.14 million of $351.85 million total obligated in the last full year across 26 awards. The remaining obligation is distributed across a limited set of related administrative, IT, and professional service NAICS codes, with the next largest being NAICS 923130 at $18.49 million and NAICS 541990 at $15.37 million. Two NAICS codes show negative obligated amounts—611691 and 923120—indicating downward adjustments or deobligations within the period.

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 = '3EYS4'
        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 351,845,581.33 351.85 million 55

Insight

In the last full year, PALMETTO GBA, LLC (CAGE 3EYS4) obligated $351.85 million across 55 awards, for an average award value of $6.40 million. The activity is concentrated in a single annual period, indicating a material level of obligation volume within the 1-year window rather than a distributed multi-year pattern. This award mix suggests moderate concentration across a relatively limited number of actions.

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.