# CF Enforcement Check

> CF Enforcement Check is a paid API for AI agents from cf-enforcement-check.cf-exclusion-check.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-19).

Checks whether a company has any federal enforcement actions, court records, or filings against it, returning a verdict, match count, matched names, agencies, and date-based activity signals.

## Facts

- Endpoint: GET https://cf-enforcement-check.cf-exclusion-check.workers.dev/v1/check
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cf-enforcement-check-99558f96
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gfINARs4KxESbiKR3rxri

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-enforcement-check-99558f96
```

Example prompt: Can you check if Acme Financial Corp has any federal enforcement actions or court filings against them? I want to see the verdict, which agencies are involved, and whether there's been any activity in the last 90 days or 12 months.

## When to prefer this

Use this endpoint when you need a quick, low-cost signal on whether a company has federal enforcement exposure — especially useful for vendor onboarding, investor due diligence, or competitive monitoring. Prefer this over the full enforcement report sibling endpoint when you only need summary-level signals (verdict, counts, agencies, dates) rather than per-record detail. Best for automated screening workflows where a pass/fail verdict with trend indicators is sufficient.

## Known failure modes

- Organization name not specific enough — returns false positives for common business names
- No records found for a real company if it operates under a different legal name
- CIK mismatch if an incorrect SEC identifier is provided
- State filter too narrow — may exclude relevant federal actions filed in different jurisdictions
- Rate limiting or payment failure resulting in no response

## How this service works

Any federal enforcement action, court record or filing against this company? Verdict, match count, the names matched on, agencies, latest date, 90-day and 12-month counts. Signals from public records, not a compliance screen.

## Output

Returns a verdict (match/no match), the total number of matching enforcement records, the specific organization names that matched, the federal agencies or courts involved, the date of the most recent action, and counts of actions in the trailing 90-day and 12-month windows — all sourced from public federal records.

## 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",
     "required": [
      "org"
     ],
     "properties": {
      "cik": {
       "type": "string",
       "description": "Optional SEC Central Index Key"
      },
      "org": {
       "type": "string",
       "description": "Organization name, with or without its legal suffix"
      },
      "state": {
       "type": "string",
       "description": "Optional two-letter US state code"
      }
     }
    }
   },
   "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-enforcement-check-99558f96/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cf-enforcement-check.cf-exclusion-check.workers.dev](https://www.zero.xyz/host/cf-enforcement-check.cf-exclusion-check.workers.dev/llms.txt)
