# CF Exclusion Check – Full Report

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

Returns a comprehensive exclusion report for a person or business against the HHS-OIG LEIE and SAM.gov lists, including every match with agency, dates, NPI, UEI, and CAGE code.

## Facts

- Endpoint: GET https://exclusions.cfsoft.us/v1/report
- Price: $0.5/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-full-report-6b6f3e4a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mLuGAQAugx_udeDaYck-z

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-full-report-6b6f3e4a
```

Example prompt: Can you run a full exclusion report on Dr. Jane Smith with NPI 1234567890 — I need to see every match from the HHS-OIG LEIE and SAM.gov, including any agency names, exclusion dates, UEI, and CAGE codes?

## When to prefer this

Use this endpoint when you need a thorough, combined exclusion screening across both HHS-OIG LEIE and SAM.gov in a single call, returning full structured match data including NPI, UEI, and CAGE codes. Prefer this over simple pass/fail checks when you need audit-ready documentation with all match details and dates, especially for healthcare provider credentialing, federal vendor onboarding, or compliance workflows requiring complete exclusion metadata.

## Known failure modes

- No matches found — entity is not on any exclusion list (clean result, not an error)
- Invalid or missing query parameters — returns an error if name or identifier fields are absent
- SAM.gov or LEIE data temporarily unavailable — upstream data source outage
- Rate limiting or payment failure — x402 payment not processed correctly
- Ambiguous name matches — multiple results returned for common names requiring further disambiguation

## How this service works

Full exclusion report from the HHS-OIG LEIE and SAM.gov: every match with agency, dates, NPI, UEI and CAGE.

## Output

A detailed exclusion report listing every matching record found in HHS-OIG LEIE and SAM.gov for the queried entity, including the agency name, exclusion start and reinstatement dates, NPI, UEI (Unique Entity Identifier), and CAGE code for each match.

## 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-full-report-6b6f3e4a/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)
