Fuzzy-screen a person or organization name against the official public sanctions lists (OF
Fuzzy-screen a person or organization name against the official public sanctions lists (OFAC SDN, UK, EU, UN), including aliases. Returns scored matches with list, program, country, type, and reference.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-09
updated
Provider
webtools402.176-109-107-191.sslip.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xF22e558a00D91Ee12A1F50C52186FecB8dDFf493",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"min_score": 85,
"name": "Saddam Hussein",
"type": "individual"
},
"type": "http"
},
"output": {
"example": {
"disclaimer": "Informational match against public sanctions lists; not legal advice. Verify against official sources.",
"match_count": 1,
"matches": [
{
"country": "IRAQ",
"dob": "1937-04-28",
"list": "EU",
"match_type": "fuzzy",
"matched_name": "Saddam Hussein Al-Tikriti",
"name": "Saddam Hussein Al-Tikriti",
"programs": [
"IRQ"
],
"ref": "EU.27.28",
"score": 90,
"type": "individual"
}
],
"min_score": 85,
"query": "Saddam Hussein"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"description": "Maximum matches to return (default 10)",
"maximum": 50,
"minimum": 1,
"type": "integer"
},
"min_score": {
"description": "Minimum fuzzy match score (default 85)",
"maximum": 100,
"minimum": 50,
"type": "integer"
},
"name": {
"description": "Person or organization name to screen",
"type": "string"
},
"type": {
"description": "Optional filter by designation type",
"enum": [
"individual",
"entity",
"vessel"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://webtools402.176-109-107-191.sslip.io/screen/entity" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://webtools402.176-109-107-191.sslip.io/screen/entity");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://webtools402.176-109-107-191.sslip.io/screen/entity")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4679.json, and this resource appears in /discovery/resources and /discovery/search.