Federal Contractor

FRESENIUS MEDICAL CARE HOLDINGS INC Federal Contract Obligations (Last 5 Years)

FRESENIUS MEDICAL CARE HOLDINGS INC shows 1.78 billion in obligated federal procurement across 18 award actions in the last 5 years.

Most of the vendor's federal activity is with the Veterans Affairs, Department, which accounts for 16 actions and 1.78 billion of the total. The work is concentrated in NAICS 621492, Kidney Dialysis Centers, with smaller obligations under water supply and electromedical manufacturing codes.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect the last 5 years of FPDS award actions and may include only readable obligated amounts from the provided analysis window.

CAGE Code
3MGP1
UEI
NVL9NNKL2617
Total Obligated
1.78 billion
1,783,245,849.81
Award Actions
18
Average Action Value
99,069,213.87

About FRESENIUS MEDICAL CARE HOLDINGS INC federal contract activity

FRESENIUS MEDICAL CARE HOLDINGS INC recorded 18 FPDS awards totaling 1.78 billion over the last 5 years, with an average award value of 99.07 million. The vendor is identified under CAGE 3MGP1 and UEI NVL9NNKL2617. Award activity is highly concentrated in a small number of large obligations.

Agency mix and customer concentration

The portfolio is overwhelmingly concentrated in the VETERANS AFFAIRS, DEPARTMENT OF, which accounts for 1.78 billion across 16 awards. The only other agency in the period is the DEPT OF THE ARMY, with 246.27 thousand across 2 awards. This mix indicates a near-single-agency dependency with limited diversification.

Industry profile based on NAICS activity

NAICS 621492, Kidney Dialysis Centers, dominates the vendor’s obligations at 1.78 billion across 15 awards, indicating that core procurement activity is concentrated in dialysis-related services. Smaller activity appears in NAICS 221310, Water Supply and Irrigation Systems, at 246.27 thousand across 2 awards, and NAICS 334510, Electromedical and Electrotherapeutic Apparatus Manufacturing, at 211.24 thousand across 1 award. The NAICS profile is tightly aligned to healthcare delivery and related support functions.

Annual contract trend over the analysis window

Obligations peaked in 2025 at 682.53 million across 13 awards, making it the dominant year in both value and volume. Prior years were materially lower, ranging from 186.05 million in 2024 to 350.47 million in 2023, 288.75 million in 2022, and 275.45 million in 2021. The pattern suggests a recent acceleration in award activity after several years of comparatively steady but lower funding.

How to interpret this page

This summary is based on FPDS-observed obligations for the last 5 years using the vendor’s CAGE code 3MGP1 and UEI NVL9NNKL2617. Agency, NAICS, and annual totals reflect recorded obligated amounts and award counts in the supplied dataset. Values are reported as provided and rounded in the source metrics where applicable.

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 = '3MGP1'
        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
3600 VETERANS AFFAIRS, DEPARTMENT OF 1,782,999,576.30 1.78 billion 16
2100 DEPT OF THE ARMY 246,273.51 246.27 thousand 2

Insight

Over the last 5 years, FRESENIUS MEDICAL CARE HOLDINGS INC’s obligations are overwhelmingly concentrated with the Department of Veterans Affairs, which accounts for $1.78 billion of $1.78 billion total obligated across 16 of 18 awards. The Department of the Army represents a very small share of activity, at $246.27 thousand across 2 awards. This indicates a highly concentrated agency profile with minimal diversification across federal buyers.

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 = '3MGP1'
        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
621492 KIDNEY DIALYSIS CENTERS 1,782,788,340.30 1.78 billion 15
221310 WATER SUPPLY AND IRRIGATION SYSTEMS 246,273.51 246.27 thousand 2
334510 ELECTROMEDICAL AND ELECTROTHERAPEUTIC APPARATUS MANUFACTURING 211,236.00 211.24 thousand 1

Insight

Over the last 5 years, FRESENIUS MEDICAL CARE HOLDINGS INC’s obligations under CAGE 3MGP1 were highly concentrated in NAICS 621492, Kidney Dialysis Centers, which accounts for $1.78 billion across 15 awards and nearly all of the vendor’s total obligated value. The remaining activity is minimal and distributed across two additional NAICS codes: 221310, Water Supply and Irrigation Systems, at $246.27 thousand in 2 awards, and 334510, Electromedical and Electrotherapeutic Apparatus Manufacturing, at $211.24 thousand in 1 award. Overall, the vendor’s award profile indicates a narrow procurement focus dominated by dialysis-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 = '3MGP1'
        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 682,529,461.58 682.53 million 13
2024 186,048,197.51 186.05 million 1
2023 350,470,804.56 350.47 million 1
2022 288,751,096.54 288.75 million 2
2021 275,446,289.62 275.45 million 1

Insight

FRESENIUS MEDICAL CARE HOLDINGS INC (CAGE 3MGP1) obligated $1.78 billion across 18 awards over the last 5 years, with an average award value of about $99.1 million. Obligations are highly concentrated in 2025, which accounts for $682.5 million and 13 of the 18 awards, or more than one-third of the five-year total in a single year. The remaining obligations are distributed across 2021–2024, with annual totals ranging from $186.0 million to $350.5 million, indicating a meaningful recent increase in award count and funding level.

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.