Where are clinicians dropping off Medicare enrollment? Anti-joins two PPEF quarterly snaps
Where are clinicians dropping off Medicare enrollment? Anti-joins two PPEF quarterly snapshots: enrollments present earlier but gone in the latest, aggregated per state × specialty. Filter by state, specialty, org, individuals_only, min_dropped, or a since baseline snapshot. Returns dropped_count and sample dropped NPIs — a backfill-demand tell for clinician staffing. CMS public-domain records.
1250000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-14
updated
Provider
api.govparse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3873d15CF3209c32aaA8d9AA542164E658567129",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1250000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1250000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"org": "Health",
"specialty": "Psychology",
"state": "TX"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"dropped_count": 42,
"dropped_npis": [
"1003879883",
"1013912345"
],
"latest_snapshot": "2026-07-17",
"prior_snapshot": "2026-04-01",
"specialty": "PRACTITIONER - OBSTETRICS/GYNECOLOGY",
"state": "TX"
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/pecos/enrollment-exodus/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"individuals_only": {
"description": "true = exclude organizational enrollments.",
"examples": [
"true"
],
"type": "string"
},
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"min_dropped": {
"description": "Minimum dropped enrollments per state×specialty.",
"examples": [
"5"
],
"type": "string"
},
"offset": {
"description": "Rows to skip.",
"examples": [
0
],
"type": "integer"
},
"org": {
"description": "Organization name fragment (org enrollments).",
"examples": [
"Health"
],
"type": "string"
},
"since": {
"description": "Baseline snapshot: latest vs earliest on/after this date (YYYY-MM-DD).",
"examples": [
"2026-01-01"
],
"type": "string"
},
"specialty": {
"description": "Provider-type / specialty fragment.",
"examples": [
"Psychology"
],
"type": "string"
},
"state": {
"description": "Enrollment state code(s), CSV.",
"examples": [
"TX"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/pecos/enrollment-exodus/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://api.govparse.io/v1/pecos/enrollment-exodus/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://api.govparse.io/v1/pecos/enrollment-exodus/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/14552.json, and this resource appears in /discovery/resources and /discovery/search.