# toolcall.click Sanctions Screening

> toolcall.click Sanctions Screening is a paid API for AI agents from toolcall.click, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Screen a person, company, or vessel name against OFAC SDN, UN Consolidated, EU FSF, and UK FCDO sanctions lists with fuzzy matching and match scores

## Facts

- Endpoint: GET https://toolcall.click/t/sanctions/screen
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toolcall-click-sanctions-screening-b0ecb202
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AqyGJUs_dr65S9k3wPqe8

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 toolcall-click-sanctions-screening-b0ecb202
```

Example prompt: Can you screen 'Rosneft Oil Company' as an entity against all major sanctions lists — OFAC, UN, EU, and UK — and show me any matches with their scores and which programs they're listed under?

## When to prefer this

Use this endpoint when you need to screen names against all four major official sanctions lists (OFAC, UN, EU, UK) in a single API call with fuzzy matching and a confidence score. Prefer this over manual per-list lookups or building your own screening pipeline. Ideal for compliance automation, counterparty due diligence, KYC onboarding flows, and AML checks where comprehensive multi-jurisdiction coverage is required in real time.

## Known failure modes

- Missing required 'name' parameter returns a 400 error
- Name shorter than 2 or longer than 120 characters rejected
- Invalid type enum value returns validation error
- No matches found returns empty results array with 200 status
- Sanctions list data temporarily unavailable during daily refresh may return stale data or 503
- Country filter fragment that matches no known country may return unfiltered or empty results

## How this service works

Keyless pay-per-call APIs for AI agents: 30 tools across compliance, trade, safety, web and data. Pay per call with USDC on Base via x402. No account, no API key.

## Output

JSON object containing matched entries from up to four sanctions lists (OFAC SDN, UN Consolidated, EU FSF, UK FCDO), each with a fuzzy match score, primary name, aliases, entity type, listed programs, country, date of birth where applicable, and list freshness/last-updated timestamp. Returns up to the requested number of hits (default 10).

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "hits": [
   {
    "list": "OFAC",
    "type": "individual",
    "score": 0.95,
    "programs": "UKRAINE-EO13661",
    "strength": "strong",
    "matchedName": "IVANOV, Sergei"
   }
  ],
  "hitCount": 1,
  "updatedAt": "2026-07-14T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toolcall-click-sanctions-screening-b0ecb202/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolcall.click](https://www.zero.xyz/host/toolcall.click/llms.txt)
