# EU Sanctions Screening (EU/UN/UK Combined)

> EU Sanctions Screening (EU/UN/UK Combined) is a paid API for AI agents from vat.installateur1210.at, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Screens a person or company name against EU, UN Security Council, and UK OFSI sanctions lists using fuzzy matching, returning detailed hit information including list, programme, and reference.

## Facts

- Endpoint: GET https://vat.installateur1210.at/x402/sanctions
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eu-sanctions-screening-eu-un-uk-combined-63f8454a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7HS-Vzc04i54AdctcJBRF

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 eu-sanctions-screening-eu-un-uk-combined-63f8454a
```

Example prompt: Can you screen the name 'Viktor Petrov' against all three sanctions lists — EU, UN, and UK — using a match threshold of 0.9 to make sure he's not flagged before we proceed with onboarding?

## When to prefer this

Prefer this endpoint when you need consolidated screening against EU Commission FSF, UN Security Council, and UK OFSI sanctions lists in a single call, with fuzzy name matching to catch spelling variants and transliterations. Ideal for AML/KYC workflows requiring daily-fresh data without maintaining your own sanctions database. Choose the threshold parameter to balance precision vs. recall depending on compliance risk appetite.

## Known failure modes

- Missing required 'name' query parameter returns an error
- Invalid 'lists' value (not eu/un/uk) may be ignored or return an error
- Threshold outside 0-1 range may return a validation error
- Network timeout if the index is being re-indexed
- No hits returned does not guarantee the entity is not sanctioned — only that no fuzzy match exceeded the threshold

## How this service works

EU sanctions screening (AML/KYC): check a person or company name against the official EU consolidated financial sanctions list (FSF, European Commission). Fuzzy matching, returns programme, EU reference, regulation, countries, birth dates and the source date. Updated daily. Pay per check, no account needed.

## Output

A list of sanction hits (possibly empty if none found), each containing: the list name (eu/un/uk), the sanctions programme, the official reference number, the list date, and the name variant that triggered the match. Returns an empty result if the name is clean across all screened lists.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "person or company name to screen"
      },
      "lists": {
       "type": "string",
       "description": "optional: eu, un, uk or a comma list; default all three"
      },
      "country": {
       "type": "string",
       "description": "optional ISO-2 country code"
      },
      "threshold": {
       "type": "number",
       "description": "match threshold 0-1, default 0.85"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eu-sanctions-screening-eu-un-uk-combined-63f8454a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vat.installateur1210.at](https://www.zero.xyz/host/vat.installateur1210.at/llms.txt)
