# EU Sanctions List Screener (FISMA)

> EU Sanctions List Screener (FISMA) is a paid API for AI agents from x402-endpoints.onrender.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Screens a name against the EU consolidated sanctions list (FISMA) and returns fuzzy-matched results with similarity scores and sanction context for AML/watchlist compliance.

## Facts

- Endpoint: GET https://x402-endpoints.onrender.com/sanctions/screen
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eu-sanctions-list-screener-fisma-5d8faca5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w4wBEGOo8Tan6WQWp6Y4n

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-list-screener-fisma-5d8faca5
```

Example prompt: Can you screen 'Viktor Ivanov' as a person against the EU consolidated sanctions list with a similarity threshold of 0.75 and return up to 10 matches — I need to know if he's listed and under which sanction programme?

## When to prefer this

Use this endpoint when you need fuzzy name-matching against the official EU FISMA consolidated sanctions list specifically, with similarity scoring and sanction programme context. Prefer this over generic OFAC or UN sanctions APIs when EU regulatory compliance is the requirement. Ideal for KYC/KYB onboarding flows, AML screening pipelines, or compliance checks for EU-regulated financial activity.

## Known failure modes

- Missing required 'name' query parameter returns an error
- Threshold out of 0–1 range may return validation error
- Limit outside 1–50 range may be rejected or clamped
- No matches found returns an empty list (not an error)
- Service unavailable on Render cold start may cause timeout

## How this service works

Screen a name against the official EU consolidated sanctions list (FISMA) for anti-money-laundering (AML) and watchlist checks — returns matches with a similarity score and context (EU reference, type, programme), not a binary yes/no.

## Output

Returns a list of matches from the EU FISMA consolidated sanctions list, each with a similarity score (0–1), the matched name, EU reference identifier, entity type, and the specific sanction programme the match belongs to. Non-binary — returns all matches above the threshold rather than a simple yes/no.

## 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": "Name to screen (person or entity), e.g. 'Saddam Hussein'"
      },
      "type": {
       "type": "string",
       "description": "Optional: 'person' or 'enterprise'"
      },
      "limit": {
       "type": "integer",
       "description": "Max matches [1-50], e.g. 10"
      },
      "threshold": {
       "type": "number",
       "description": "Min similarity 0-1 to report a match (default 0.7)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "person",
  "query": "Saddam Hussein",
  "cached": false,
  "source": "EU Consolidated Financial Sanctions List — FISMA (webgate.ec.europa.eu)",
  "matches": [
   {
    "name": "Saddam Hussein Al-Tikriti",
    "score": 0.78,
    "un_id": null,
    "programme": "IRQ",
    "eu_reference": "EU.27.28",
    "subject_type": "person",
    "publication_date": "2003-07-07",
    "designation_details": "Former President of Iraq"
   }
  ],
  "list_size": 38542,
  "threshold": 0.7,
  "timestamp": "2026-06-24T15:15:00Z",
  "disclaimer": "Indicative screening against the EU consolidated list; a match is not a legal confirmation and requires human review. Not a compliance opinion.",
  "match_count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eu-sanctions-list-screener-fisma-5d8faca5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-endpoints.onrender.com](https://www.zero.xyz/host/x402-endpoints.onrender.com/llms.txt)
