This page summarizes federal procurement activity for award number 75FCMC22C0038 within agency ID 7530 over the last 10 years. The award shows 27 actions and total obligated amount of 2.64 billion, with an average action value of 97,831,225.63.
Award Number
Award Number 7530 / 75FCMC22C0038 Federal Contract Action Summary (Last 10 Years)
FPDS award page for award number 75FCMC22C0038 under agency ID 7530, showing obligations and action history over the last 10 years.
Totals are based on the provided analysis window and may differ from other reporting periods or datasets.
Overview
The award record for 75FCMC22C0038 in agency ID 7530 covers 27 reported actions across the last 10 years. Total obligated value is 2,641,443,092, with an average action value of 97,831,225.63. This page is meant to support quick review of award-level procurement activity.
How to use this page
Use this page to review the award’s action count, obligated totals, and average action value in one place. It can help users compare this award against other FPDS records, track procurement volume over time, and identify the scale of spending tied to the PIID.
Top Agencies
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7530' AND content__award__awardID__awardContractID__PIID = '75FCMC22C0038'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
agency_id,
agency_name
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 7530 | CENTERS FOR MEDICARE AND MEDICAID SERVICES | 2,641,443,092.00 | 2.64 billion | 27 |
Insight
Obligations for PIID 75FCMC22C0038 are fully concentrated in a single agency: the Centers for Medicare and Medicaid Services, with 27 awards totaling $2.64 billion over the 10-year window. This indicates the contract activity is entirely attributable to CMS, with no distribution across other agencies in the provided data. The award pattern suggests a sustained, agency-specific funding relationship rather than broad federal use.
Top Vendors
SELECT
vendor_name,
cage_code,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name,
ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7530' AND content__award__awardID__awardContractID__PIID = '75FCMC22C0038'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
vendor_name,
cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
| Vendor | CAGE Code | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| MAXIMUS FEDERAL SERVICES, INC. | 8AMZ8 | 2,641,443,092.00 | 2.64 billion | 27 |
Insight
MAXIMUS FEDERAL SERVICES, INC. accounts for all reported obligated dollars in this 10-year award view, with 27 awards totaling $2.64 billion. This indicates full vendor concentration in the available top-vendor data for PIID 75FCMC22C0038. The distribution suggests a sustained obligation pattern to a single contractor rather than a diversified vendor base.
Top NAICS
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7530' AND content__award__awardID__awardContractID__PIID = '75FCMC22C0038'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
naics_code,
naics_name
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 561422 | TELEMARKETING BUREAUS AND OTHER CONTACT CENTERS | 2,641,443,092.00 | 2.64 billion | 27 |
Insight
Obligations for PIID 75FCMC22C0038 are fully concentrated in NAICS 561422, Telemarketing Bureaus and Other Contact Centers, with 2.64 billion obligated across 27 awards in the 10-year window. This indicates a highly concentrated award profile with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated reliance on this service category rather than isolated activity.
Top PSC Codes
SELECT
content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7530' AND content__award__awardID__awardContractID__PIID = '75FCMC22C0038'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
psc_code,
psc_name
ORDER BY total_obligated DESC
LIMIT 10
| PSC Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| R499 | SUPPORT- PROFESSIONAL: OTHER | 2,641,443,092.00 | 2.64 billion | 27 |
Insight
All recorded obligation in this 10-year window is concentrated in PSC R499, Support- Professional: Other, indicating a fully single-PSC award profile for PIID 75FCMC22C0038. The award reflects 27 obligations totaling $2.64 billion, with no evidence in the provided data of diversification across other product or service categories. This concentration suggests the award’s funding activity is consistently associated with this professional support classification.
Annual Trend
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '7530' AND content__award__awardID__awardContractID__PIID = '75FCMC22C0038'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2022 | 366,682,379.00 | 366.68 million | 3 |
| 2023 | 770,352,735.00 | 770.35 million | 8 |
| 2024 | 659,505,519.00 | 659.51 million | 8 |
| 2025 | 844,902,459.00 | 844.90 million | 8 |
Insight
Obligations for PIID 75FCMC22C0038 are concentrated in four years, with no recorded activity in the provided window outside 2022–2025. Funding increased sharply from 366.68 million across 3 awards in 2022 to 770.35 million across 8 awards in 2023, then eased to 659.51 million in 2024 before rising again to 844.90 million in 2025. Award count stabilized at 8 in 2023–2025, indicating the recent increase in obligated value was driven by larger dollar volume rather than more awards.
Use FPDS Query for deeper award and vehicle analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, and annual trends.
Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.