# OIG LEIE Exclusion Search

> OIG LEIE Exclusion Search is a paid API for AI agents from api.healthparse.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Search the OIG List of Excluded Individuals/Entities (LEIE) to determine if a healthcare provider or entity is excluded from federal healthcare programs.

## Facts

- Endpoint: GET https://api.healthparse.io/v1/exclusions/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oig-leie-exclusion-search-a3fecba3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qzcnf1XLBH0N-4HMfgwDU

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 oig-leie-exclusion-search-a3fecba3
```

Example prompt: Can you check the OIG LEIE exclusion list to see if a provider with NPI 1234567890 or last name 'Johnson' is excluded from federal healthcare programs in California?

## When to prefer this

Use this endpoint when you need to screen healthcare providers, vendors, or entities against the federally maintained OIG LEIE database for compliance purposes — especially for pre-hire screening, vendor onboarding, credentialing workflows, or Medicaid/Medicare billing eligibility checks. Prefer this over manual OIG website searches when automating compliance pipelines or batch-screening multiple providers.

## Known failure modes

- No matches found for the given search criteria — returns empty result set
- Invalid NPI format — may return no results or validation error
- State code not recognized — returns error or empty results
- Limit exceeds maximum of 100 — returns validation error
- Missing all search parameters — returns error requiring at least one search field
- Service unavailable or payment not processed — returns 402 or 5xx error

## How this service works

Search the OIG List of Excluded Individuals/Entities (LEIE) by name, NPI, state, or exclusion type. Answers: is this provider excluded from federal healthcare programs? Monthly refresh.

## Output

A paginated list of matching LEIE records, each containing the excluded individual's or entity's name, NPI, state, exclusion type, and exclusion date. Returns up to 100 records per call with offset-based pagination. Monthly-refreshed data from the OIG.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "npi": {
     "type": "string"
    },
    "limit": {
     "type": "integer",
     "default": 25,
     "maximum": 100
    },
    "state": {
     "type": "string"
    },
    "offset": {
     "type": "integer",
     "default": 0
    },
    "exclusion_type": {
     "type": "string"
    },
    "last_name_search": {
     "type": "string"
    },
    "business_name_search": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oig-leie-exclusion-search-a3fecba3/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)
