# CF Enforcement Check

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

Looks up any federal enforcement actions, court records, or regulatory filings against a named organization and returns verdict, match count, matched names, agencies, latest date, and 90-day/12-month counts.

## Facts

- Endpoint: GET https://enforcement.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-enforcement-check-9ef57f10
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e4X0LGXW4Vyz27su1GjSk

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-9ef57f10
```

Example prompt: Can you check if Acme Financial Services has any federal enforcement actions or court filings against them — I want to know the verdict, how many matches, which agencies are involved, and their counts over the last 90 days and 12 months?

## When to prefer this

Use this endpoint when you need a fast, low-cost signal about whether a specific organization has federal enforcement, court, or regulatory filing history drawn from public records. It is best suited for pre-screening vendors, business partners, or investment targets before deeper due diligence. Prefer it when you have an organization name (and optionally a US state or SEC CIK) and want structured enforcement signal without running a full compliance workflow.

## Known failure modes

- Missing required 'org' parameter returns a validation error
- Ambiguous or very common organization names may return high false-positive match counts
- No records found returns a no-match verdict with zero counts
- Invalid state code may cause parameter rejection or unfiltered results
- SEC CIK mismatch may return records for unintended entities

## 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 or no match), total match count, the specific names matched on, list of government agencies involved, the date of the most recent enforcement action, and separate counts of enforcement actions in the last 90 days and 12 months. Data is sourced from public records and is not a formal compliance screen.

## 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-9ef57f10/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from enforcement.cfsoft.us](https://www.zero.xyz/host/enforcement.cfsoft.us/llms.txt)
