mirrored listing x402 eip155:8453

Screen a provider (name and/or NPI) against all federal and state exclusion lists in one c

Screen a provider (name and/or NPI) against all federal and state exclusion lists in one call — OIG LEIE, GSA SAM, OFAC SDN, FDA debarment, state Medicaid exclusions, and licensing-board sanctions from 13 states. Returns an attested clear/flagged verdict with per-list counts. NPI-only screens (no name) cover 4 of 6 lists — OFAC SDN and FDA debarment need a name; see lists_checked/lists_not_applicable. For hiring, credentialing, and vendor-onboarding agents.

Do you run api.healthparse.io? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
150000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-28
updated

Provider

api.healthparse.io · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x177eA123A35253ba8869A7e21E717978e482351D",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "150000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "name": "example",
          "npi": "example"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "lists_checked": [
            "oig_leie",
            "gsa_sam",
            "state_medicaid",
            "state_boards"
          ],
          "lists_not_applicable": [
            "ofac_sdn",
            "fda_debarment"
          ],
          "per_list": {
            "fda_debarment": null,
            "gsa_sam": 0,
            "ofac_sdn": null,
            "oig_leie": 0,
            "state_boards": 0,
            "state_medicaid": 0
          },
          "verdict": {
            "clear": true,
            "flagged_lists": [],
            "hits": 0
          }
        },
        "type": "json"
      }
    },
    "routeTemplate": "/v1/screen",
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "properties": {
            "name": {
              "type": "string"
            },
            "npi": {
              "type": "string"
            }
          },
          "type": "object"
        }
      },
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.healthparse.io/v1/screen"
# -> 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.healthparse.io/v1/screen");
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.healthparse.io/v1/screen")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/14923.json, and this resource appears in /discovery/resources and /discovery/search.