Filtered provider list with pagination
Filtered provider list with pagination. Filter on state, county, ZIP, specialty, DSO/Independent, license status, Medicaid state-roster enrollment.
500000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated
Provider
providersignal.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x02944071f7c7c92b46b1C750c341FaEE2B9095eA",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "500000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"per_page": 25,
"state": "TX"
},
"type": "http"
},
"output": {
"example": {
"data": [
{
"city": "LEAGUE CITY",
"first_name": "EUGENE",
"last_name": "AARON",
"npi": "1699733048",
"specialty": "General Dentist",
"state": "TX"
}
],
"error": null,
"meta": {
"envelope_version": "1.0",
"page": 1,
"per_page": 25,
"total": 14998
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"city": {
"type": "string"
},
"has_cms": {
"enum": [
"true",
"false"
],
"type": "string"
},
"is_dso": {
"enum": [
"true",
"false"
],
"type": "string"
},
"license_status": {
"description": "Single value or comma-list of normalized buckets (active/inactive/expired/retired/deceased/disciplined/pending)",
"type": "string"
},
"medicaid": {
"description": "true = state-listed on a Medicaid enrolled-provider roster (NY + CA rosters currently; state-listed enrollment, not verified acceptance)",
"enum": [
"true"
],
"type": "string"
},
"page": {
"default": 1,
"minimum": 1,
"type": "integer"
},
"per_page": {
"default": 25,
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"specialty": {
"description": "Exact NUCC taxonomy specialty match",
"type": "string"
},
"state": {
"description": "Single 2-letter code or comma-list (e.g. 'TX,FL,CA')",
"type": "string"
},
"zip": {
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"items": {
"additionalProperties": true,
"properties": {
"city": {
"type": [
"string",
"null"
]
},
"first_name": {
"type": [
"string",
"null"
]
},
"last_name": {
"type": [
"string",
"null"
]
},
"medicaid_participating": {
"description": "State-listed on a Medicaid enrolled-provider roster (NY/CA so far); null = no ingested roster lists this NPI.",
"type": [
"boolean",
"null"
]
},
"npi": {
"type": "string"
},
"specialty": {
"type": [
"string",
"null"
]
},
"state": {
"type": [
"string",
"null"
]
}
},
"type": "object"
},
"type": "array"
},
"error": {
"description": "Null on success; { code, message } on failure.",
"type": [
"object",
"null"
]
},
"meta": {
"additionalProperties": true,
"properties": {
"envelope_version": {
"type": "string"
},
"request": {
"properties": {
"billed_credits": {
"type": "integer"
},
"billing_method": {
"enum": [
"subscription",
"per_query",
"free",
"admin"
],
"type": "string"
},
"endpoint": {
"type": "string"
},
"id": {
"type": "string"
}
},
"type": "object"
},
"source_attribution": {
"description": "Per-source citation: logical table, last successful refresh, schema version, license posture.",
"items": {
"properties": {
"last_refresh": {
"type": [
"string",
"null"
]
},
"license": {
"type": "string"
},
"schema_version": {
"type": "string"
},
"table": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"envelope_version"
],
"type": "object"
}
},
"required": [
"data",
"error",
"meta"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://providersignal.com/api/v1/agent/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://providersignal.com/api/v1/agent/search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://providersignal.com/api/v1/agent/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/13621.json, and this resource appears in /discovery/resources and /discovery/search.