# CompliancePulse OFAC Sanctions Screener

> CompliancePulse OFAC Sanctions Screener is a paid API for AI agents from compliancepulse.theaslangroupllc.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Screens a person or company name against live US Treasury OFAC SDN and Consolidated lists, returning fuzzy-matched results with 0-100 match scores and official OFAC row data.

## Facts

- Endpoint: GET https://compliancepulse.theaslangroupllc.com/api/screen/sanctions
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/compliancepulse-ofac-sanctions-screener-5d141f7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YszeZTOt1zOUasUn9uOli

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 compliancepulse-ofac-sanctions-screener-5d141f7c
```

Example prompt: Before I wire money to 'Dmitri Ivanov Trading LLC', can you run a sanctions screen against the OFAC SDN and Consolidated lists and tell me the match score and any matching programs or aliases?

## When to prefer this

Use this endpoint when you need a deterministic, live OFAC SDN and Consolidated list check against a specific name — especially when fuzzy matching on aliases and transliterations is required. Prefer this over generic KYC APIs when you need official OFAC row data verbatim (programs, SDN uid, remarks) rather than a simple pass/fail. Ideal for pre-payment counterparty screening, onboarding KYC checks, and AML workflows that require an auditable sanctions result.

## Known failure modes

- Name not found on any OFAC list — returns zero matches with score 0
- Ambiguous transliteration yields multiple low-confidence hits — agent should review all returned rows
- OFAC list temporarily unavailable — endpoint may return 503 or stale-data error
- Overly short or common name (e.g. 'Ali') produces many false-positive matches requiring manual review
- Payment not processed (x402) — endpoint returns 402 Payment Required before screening occurs

## How this service works

Is this person or company sanctioned? Screens a name against the live US Treasury OFAC SDN and Consolidated (non-SDN) lists — sanctions screening, watchlist check, KYC/AML pre-check, counterparty screening before a payment. Fuzzy-matches primary names AND every OFAC alias, so transliteration and word-order variants still hit. Deterministic: no LLM. Returns official OFAC rows verbatim (programs, SDN uid, remarks) with a 0-100 match score.

## Output

Returns official OFAC list rows for any fuzzy-matched hits, including the SDN uid, sanctions programs, all matched aliases, remarks, and a 0-100 match confidence score indicating how closely the queried name aligns with each result.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "name"
 ],
 "properties": {
  "name": {
   "type": "string",
   "description": "Person or entity name to screen"
  },
  "type": {
   "type": "string",
   "description": "Narrow by entity type: individual | entity | vessel | aircraft"
  },
  "country": {
   "type": "string",
   "description": "ISO-2 country code — narrows to parties linked to that country by address, nationality, sanctions program or name. Each hit reports which."
  },
  "threshold": {
   "type": "number",
   "description": "Match score cutoff 0-100. Default 85. Lower = more (noisier) hits."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "hits": [
   {
    "list": "SDN",
    "name": "BANK MELLI IRAN",
    "type": "entity",
    "score": 100,
    "sdn_uid": 7241,
    "programs": [
     "IRAN",
     "SDGT"
    ],
    "matched_on": "primary"
   }
  ],
  "list": {
   "source": "US Treasury OFAC",
   "list_date": "2026-07-10"
  },
  "match": true,
  "query": {
   "name": "Bank Melli Iran",
   "threshold": 85
  },
  "total_hits": 1,
  "deterministic": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/compliancepulse-ofac-sanctions-screener-5d141f7c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from compliancepulse.theaslangroupllc.com](https://www.zero.xyz/host/compliancepulse.theaslangroupllc.com/llms.txt)
