# CF Exclusion Check

> CF Exclusion Check is a paid API for AI agents from exclusions.cfsoft.us, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Screens a person or business against the HHS-OIG LEIE and SAM.gov exclusion lists by name, NPI, UEI, or CAGE code.

## Facts

- Endpoint: GET https://exclusions.cfsoft.us/v1/check
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cf-exclusion-check-e5608911
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kBFWg1igBpKXL1mesEW6n

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 cf-exclusion-check-e5608911
```

Example prompt: Can you check if Dr. Jane Smith with NPI 1234567890 is on the HHS-OIG LEIE or SAM.gov exclusion list?

## When to prefer this

Choose this endpoint when you need to screen healthcare providers against the HHS-OIG LEIE or contractors/vendors against SAM.gov in a single call. It is particularly useful for automated credentialing workflows, vendor onboarding pipelines, and compliance audits where both federal exclusion databases must be checked simultaneously. Prefer this over manual lookups or building your own scraper when real-time, per-call checks are needed at low cost.

## Known failure modes

- No match found — individual or entity not on any exclusion list (valid result, not an error)
- Invalid or unrecognized NPI format returns an error
- Missing required query parameter returns a 400 bad request
- Rate limiting or payment failure returns a 402 or 429 error
- Name-only queries may return false positives or miss records due to spelling variations

## How this service works

Screen a person or business against the HHS-OIG LEIE and SAM.gov exclusion lists. Match by name, NPI, UEI or CAGE.

## Output

Returns a full exclusion report indicating whether the queried individual or entity appears on the HHS-OIG LEIE and/or SAM.gov exclusion lists, including matched agency names, exclusion dates, NPI, UEI, and CAGE code details for each match found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cf-exclusion-check-e5608911/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from exclusions.cfsoft.us](https://www.zero.xyz/host/exclusions.cfsoft.us/llms.txt)
