# HealthParse Provider Exclusion Screener

> HealthParse Provider Exclusion Screener is a paid API for AI agents from api.healthparse.io, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-13).

Screens a healthcare provider by name and/or NPI against all major federal and state exclusion lists, returning a clear/flagged verdict with per-list counts

## Facts

- Endpoint: GET https://api.healthparse.io/v1/screen
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/healthparse-provider-exclusion-screener-1e773b98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dW3ezRmouqcm_exwExfLx

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 healthparse-provider-exclusion-screener-1e773b98
```

Example prompt: Can you run a federal and state exclusion screen on Dr. Sarah Chen, NPI 1234567890, before we bring her on as a credentialed provider — I need to know if she's flagged on OIG LEIE, GSA SAM, OFAC, FDA, or any state Medicaid list?

## When to prefer this

Use this endpoint when you need a single-call comprehensive exclusion check covering all major federal lists (OIG LEIE, GSA SAM, OFAC SDN, FDA debarment) plus state Medicaid exclusions and licensing-board sanctions across 13 states. Prefer this over manual list-by-list checks or single-list APIs when doing pre-hire compliance screening, provider credentialing, or vendor onboarding in a healthcare context. Ideal when you have an NPI and/or provider name and need an attested verdict suitable for compliance documentation.

## Known failure modes

- NPI not found or invalid — no records matched, lists_checked may be reduced
- Name too common — multiple potential matches returned, requires disambiguation
- OFAC SDN and FDA debarment not checked when only NPI is provided (no name supplied)
- Rate limit exceeded — too many screening requests in a short window
- Upstream exclusion list temporarily unavailable — partial results returned with lists_not_applicable noted
- Invalid input — neither name nor NPI provided

## How this service works

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.

## Output

Returns an attested clear or flagged verdict indicating whether the provider appears on any checked exclusion list, along with per-list match counts, which lists were checked, and which lists were not applicable (e.g. OFAC SDN and FDA debarment when no name is provided).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "npi": {
     "type": "string"
    },
    "name": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/healthparse-provider-exclusion-screener-1e773b98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.healthparse.io](https://www.zero.xyz/host/api.healthparse.io/llms.txt)
