# OFAC Sanctions Screening API

> OFAC Sanctions Screening API is a paid API for AI agents from relay402.georgespring.workers.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Screens a person, company, or vessel name against US OFAC SDN and Consolidated non-SDN sanctions lists, returning match candidates with confidence scores and list references.

## Facts

- Endpoint: GET https://relay402.georgespring.workers.dev/api/sanctions-screen
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ofac-sanctions-screening-api-286156f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hfL0NeQjY2Z5ixiG7kasw

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 ofac-sanctions-screening-api-286156f9
```

Example prompt: Can you run a sanctions check on 'Mikhail Volkov' and tell me if he appears on any OFAC list, including the SDN or Consolidated non-SDN list, along with any confidence scores?

## When to prefer this

Use this endpoint when you need automated OFAC sanctions screening for AML/KYC compliance workflows, onboarding checks, or counterparty due diligence. It covers both the SDN list (including aliases) and the Consolidated non-SDN list in a single call with confidence scoring, and is refreshed daily from official Treasury sources — making it suitable for production compliance pipelines.

## Known failure modes

- Missing required 'name' query parameter returns an error
- Name too short (under 2 characters) fails schema validation
- No matches found returns an empty candidate list
- Network or upstream Treasury data refresh failure may cause stale or unavailable results
- Ambiguous or common names may return many low-confidence candidates requiring manual review

## How this service works

Screens a person or entity name against US OFAC sanctions lists: SDN (Specially Designated Nationals incl. aliases) and the Consolidated non-SDN list, refreshed daily from official Treasury sources. Returns match candidates with confidence scores and list references. Input: person, company or vessel name.

## Output

Returns a list of match candidates from the OFAC SDN (Specially Designated Nationals, including aliases) and Consolidated non-SDN lists, each with a confidence score indicating match strength and a reference to which list(s) the entity appears on. Data is refreshed daily from official Treasury sources.

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "minLength": 2
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ofac-sanctions-screening-api-286156f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from relay402.georgespring.workers.dev](https://www.zero.xyz/host/relay402.georgespring.workers.dev/llms.txt)
