POST

Screen a name or wallet against the EU consolidated sanctions list (CFSP), with optional fuzzy matching and threshold

/v1/eu/sanctions-check

Validation · eu-sanctions-list

Request → Response

Examples from schemas.json.

Requestapplication/json
POST /v1/eu/sanctions-check
Content-Type: application/json

{
  "query": "latest AI agent payments",
  "query_type": "auto",
  "fuzzy": true,
  "threshold": 0.85
}
Responseapplication/json
HTTP/1.1 200 OK
Content-Type: application/json

// Endpoint-specific body after 402 settlement

Overview

Screen a name or wallet against the EU consolidated sanctions list (CFSP), with optional fuzzy matching and threshold.

Request schema

Body: JSON · application/json

FieldTypeDescription
querystringrequired
query_typestringrequiredenum: name, wallet, auto
fuzzybooleanrequired
thresholdnumberrequiredmin: 0
IMPLEMENTATION
curl -X POST https://api.tools402.dev/v1/eu/sanctions-check \
  -H "Content-Type: application/json" \
  -d '{
  "query": "latest AI agent payments",
  "query_type": "auto",
  "fuzzy": true,
  "threshold": 0.85
}'

402 payment flow omitted — see Integrations for settlement.