# x402 DataShop Sanctions Screener

> x402 DataShop Sanctions Screener is a paid API for AI agents from x402-datashop-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Screens a person or company name against five major sanctions lists (EU, OFAC SDN, UN, UK FCDO, French asset freezes) using fuzzy matching, returning scored matches and a verdict

## Facts

- Endpoint: GET https://x402-datashop-production.up.railway.app/v1/screen/sanctions
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-datashop-sanctions-screener-04cfa321
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2hDnzM56ofEUYDSBfwiyh

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 x402-datashop-sanctions-screener-04cfa321
```

Example prompt: Can you run a sanctions check on 'Viktor Petrov' across all five lists — EU, OFAC, UN, UK, and French — using the default 0.85 threshold and tell me if there's a match?

## When to prefer this

Choose this endpoint when you need fast, multi-list sanctions screening across the five major global sanctions regimes (EU, OFAC SDN, UN, UK FCDO, French) in a single API call with fuzzy name matching. Ideal for compliance workflows, KYC/AML checks, and vendor due diligence where you need a scored verdict rather than a raw database dump. The daily-refreshed snapshot and configurable fuzzy threshold make it suitable for both strict exact matching and broader possible-match detection.

## Known failure modes

- Missing required 'name' parameter returns 400 error
- Name shorter than 2 or longer than 120 characters is rejected
- Invalid threshold value outside 0.6–1.0 range returns validation error
- Invalid list codes in 'lists' parameter return an error
- Network or Railway deployment downtime returns 5xx
- Payment failure or insufficient USDC balance prevents access

## How this service works

Screen a name against the five official sanctions lists (EU, US OFAC SDN, UN, UK FCDO, French asset freezes) from a snapshot refreshed daily, with per-list dates. Query: name=NAME (optional threshold=0.6-1.0, lists=eu,ofac,un,uk,fr). Returns scored matches with entity type and programs, and a verdict: match, possible_match or no_match.

## Output

Returns a JSON object with a top-level verdict ('match', 'possible_match', or 'no_match'), a list of scored candidate matches each with entity type, sanctions programs, and the list they appear on, plus per-list snapshot dates indicating when each sanctions list was last refreshed.

## 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 (2-120 chars)"
      },
      "lists": {
       "type": "string",
       "description": "Comma-separated subset of eu,ofac,un,uk,fr (default: all)"
      },
      "threshold": {
       "type": "string",
       "description": "Fuzzy match threshold 0.6-1.0 as decimal (default 0.85)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-datashop-sanctions-screener-04cfa321/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-datashop-production.up.railway.app](https://www.zero.xyz/host/x402-datashop-production.up.railway.app/llms.txt)
