Regulatory & compliance
OIG Exclusions (LEIE)
Returns entries on the HHS Office of Inspector General 'List of Excluded Individuals/Entities' (LEIE). Anyone on this list is barred from billing Medicare, Medicaid, or any federal healthcare program.
Endpoint
GET /v1/oig-exclusionsSourceHHS-OIG LEIE
Authx-api-key — a free key works
What it returns
One record per result. Fields (from a live response):
- Identity —
business_name,last_name,middle_name,full_name,state,waiver_state,first_name - Dates —
date_of_birth,exclusion_date,waiver_date,reinstatement_date,scraped_at - The trade / event —
general_category - Provenance —
oig_source_url - Details —
is_business,zip,specialty,address,city,npi,exclusion_type,upin,id
Filters
| name | Case-insensitive substring against full_name (covers both individuals and businesses). |
| business_name | Case-insensitive substring against business_name only. |
| state | Two-letter state code (e.g. 'NY', 'CA'). Case-insensitive. |
| city | Case-insensitive substring against city. |
| general_category | Exact match (case-sensitive): 'PHARMACY', 'PHYSICIAN', 'OTHER BUSINESS', 'DME COMPANY', 'CLINIC', etc. |
| specialty | Case-insensitive substring against specialty. |
| exclusion_type | Statutory code (e.g. '1128a1', '1128b5'). |
| npi | Exact 10-digit National Provider Identifier. |
| is_business | Filter to businesses only (true) or individuals only (false). |
| since | ISO date (YYYY-MM-DD). Applied to sort_by field. |
| until | ISO date (YYYY-MM-DD). |
| sort_by | Default exclusion_date. |
| sort_order | Default desc. |
| limit | Default 50, max 500. |
Example request
curl "https://api.keyvex.com/v1/oig-exclusions?limit=1" \
-H "x-api-key: YOUR_KEY"
Response
{
"results": [
{
"is_business": false,
"zip": "45434",
"business_name": "",
"specialty": "HOME HEALTH AGENCY",
"address": "2842 CRONE RD",
"city": "DAYTON",
"date_of_birth": "1951-09-27",
"npi": "0000000000",
"exclusion_date": "2026-05-20",
"last_name": "SANNER",
"middle_name": "",
"waiver_date": null,
"reinstatement_date": null,
"full_name": "DAVID SANNER",
"general_category": "EMPLOYEE - PRIVATE S",
"exclusion_type": "1128a1",
"upin": "",
"oig_source_url": "https://oig.hhs.gov/exclusions/exclusions_list.asp",
"id": "oig-fd0192c76067",
"state": "OH",
"waiver_state": "",
"first_name": "DAVID",
"scraped_at": "2026-06-09T20:50:26.873Z"
}
],
"count": 1,
"has_more": true
}
Example questions you can answer
- Check if a healthcare provider is excluded.
- Recently added exclusions.
Related datasets
Query OIG Exclusions (LEIE) from your AI
Hand any AI your key + the OpenAPI spec and it can pull this dataset directly. Free key = full data, 60 requests/day.
Get a free key OpenAPI spec → REST docs →