# ProviderSignal Medicaid Rates API

> ProviderSignal Medicaid Rates API is a paid API for AI agents from providersignal.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-16).

Returns published Medicaid fee-for-service reimbursement rates for dental procedures by US state, including basket index and national ranking.

## Facts

- Endpoint: GET https://providersignal.com/api/v1/agent/medicaid/rates
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/providersignal-medicaid-rates-api-0b6748f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O93PzI3KxqdZ9rwakLXPx

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability providersignal-medicaid-rates-api-0b6748f2
```

Example prompt: What does Medicaid pay for a D2391 composite filling in Texas, and how does Texas rank nationally for Medicaid dental reimbursement rates?

## When to prefer this

Use this endpoint when you need authoritative, source-cited Medicaid dental reimbursement rates for a specific US state, especially when you need CDT-code-level granularity, national ranking context, or a basket index for benchmarking. Prefer this over general healthcare data APIs when the use case is specifically dental Medicaid fee schedules with verifiable source attribution and freshness metadata.

## Known failure modes

- Missing required 'state' query parameter returns a validation error
- Invalid state code (not a 2-letter uppercase code) returns a pattern mismatch error
- Invalid CDT code format (not matching ^D\d{4}$) returns a validation error
- State with no published Medicaid fee schedule may return null rates or empty basket
- Payment failure via x402 or MPP returns HTTP 402 with payment instructions
- Rate limiting or quota exhaustion returns a 429 or billing error

## How this service works

Healthcare market intelligence API. Unified provider directory + acquisition signals + license-events feed across all 50 US states, derived from NPI + state dental boards + CMS Medicare + OIG LEIE + state Medicaid + HRSA HPSA designations. All responses ship a citation envelope (`meta.envelope_version`, `meta.source_attribution`, `meta.request`) so agents can verify source freshness without out-of-band validation. Paid `/api/v1/agent/*` endpoints accept two per-call rails on a single 402: x402 (USDC on Base mainnet) and MPP (Stripe card via a Shared Payment Token), plus Bearer-token subscription auth for existing API keys. See [/docs/agent-payments](/docs/agent-payments) for the full flow. See [/docs/fields](/docs/fields) for the field glossary and [/llms.txt](/llms.txt) for the LLM crawler index.

## Output

Returns a JSON object with the state's Medicaid fee-for-service dental rates including: an array of procedure codes with rates and descriptions, a basket index score, national ranking among all 50 states plus DC, total number of codes covered, effective year, and a disclaimer. Also includes a meta citation envelope with source attribution and request billing details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "state"
     ],
     "properties": {
      "code": {
       "type": "string",
       "pattern": "^D\\d{4}$",
       "description": "Optional CDT D-code (e.g. D2391) for a specific-procedure raw lookup."
      },
      "state": {
       "type": "string",
       "pattern": "^[A-Z]{2}$",
       "description": "Required. 2-letter state code (e.g. TX, FL, CA). All 50 states + DC covered."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "error",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "state": {
         "type": "string"
        },
        "basket": {
         "type": "array",
         "items": {
          "type": "object",
          "properties": {
           "code": {
            "type": "string",
            "pattern": "^D\\d{4}$"
           },
           "rate": {
            "type": [
             "number",
             "null"
            ]
           },
           "pediatric": {
            "type": "boolean"
           },
           "procedure": {
            "type": "string"
           }
          },
          "additionalProperties": true
         }
        },
        "disclaimer": {
         "type": "string"
        },
        "state_name": {
         "type": "string"
        },
        "total_codes": {
         "type": "integer"
        },
        "basket_index": {
         "type": [
          "number",
          "null"
         ]
        },
        "total_ranked": {
         "type": "integer"
        },
        "national_rank": {
         "type": [
          "integer",
          "null"
         ]
        },
        "effective_year": {
         "type": [
          "integer",
          "null"
         ]
        }
       },
       "additionalProperties": true
      },
      "meta": {
       "type": "object",
       "required":
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "state": "TX",
   "basket": [
    {
     "code": "D0120",
     "rate": 24,
     "pediatric": false,
     "procedure": "Periodic oral exam"
    },
    {
     "code": "D2391",
     "rate": 88,
     "pediatric": false,
     "procedure": "1-surface composite filling"
    }
   ],
   "disclaimer": "Published Medicaid fee-for-service schedule amounts, not a coverage or eligibility guarantee.",
   "state_name": "Texas",
   "total_codes": 357,
   "basket_index": 84,
   "total_ranked": 51,
   "national_rank": 18,
   "effective_year": 2026
  },
  "meta": {
   "request": {
    "endpoint": "/api/v1/agent/medicaid/rates",
    "billing_method": "per_query"
   },
   "envelope_version": "1.0"
  },
  "error": null
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/providersignal-medicaid-rates-api-0b6748f2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from providersignal.com](https://www.zero.xyz/host/providersignal.com/llms.txt)
