# Relaystation Sanctions & PEP Screening

> Relaystation Sanctions & PEP Screening is a paid API for AI agents from api.relaystation.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Screens a name against OFAC, EU, UK, and UN sanctions lists plus Wikidata-derived PEP watchlists with fuzzy matching, returning an instant JSON verdict.

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/screening/match
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relaystation-sanctions-pep-screening-646abfa4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Iu-i9MW-Ttr4XzIsPc3Nu

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 relaystation-sanctions-pep-screening-646abfa4 -d '<json body>'
```

Example prompt: Can you run a sanctions and PEP screen on 'Viktor Petrov' — check him against OFAC, EU, UK, and UN lists and let me know if there's any match?

## When to prefer this

Choose this endpoint when you need a single, unified sanctions and PEP screening call across OFAC, EU, UK, and UN lists simultaneously with fuzzy name matching — ideal for KYC onboarding flows, transaction screening, or due diligence automation where you want a single JSON verdict rather than querying each list separately. At $0.01 per call it is cost-effective for high-volume compliance pipelines.

## Known failure modes

- Name not provided or empty input returns validation error
- Network timeout if downstream sanctions database is unavailable
- Ambiguous name with many fuzzy candidates may return multiple low-confidence hits requiring manual review
- Insufficient balance returns payment required error
- Newly listed sanctions entries may have a brief propagation delay before appearing in results

## How this service works

$0.01/screen. Screen any name against OFAC, EU, and UK sanctions (UN included) plus Wikidata-derived PEP watchlists — fuzzy matching, instant JSON verdict. Compliance in one call, one of 155 Relaystation tools on one balance — relaystation.ai

## Output

A JSON object containing a match verdict (hit or clear), the specific sanctions list(s) matched, the matched entity name(s), a fuzzy match confidence score, and PEP designation status if applicable.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "dob": {
       "type": "string",
       "description": "Optional date of birth (reserved; not yet used in scoring)."
      },
      "name": {
       "type": "string",
       "maxLength": 512,
       "minLength": 1
      },
      "type": {
       "enum": [
        "person",
        "entity"
       ],
       "type": "string",
       "description": "Optional entity-type filter."
      },
      "lists": {
       "type": "array",
       "items": {
        "enum": [
         "sanctions",
         "pep"
        ],
        "type": "string"
       },
       "description": "Categories to screen against. Default both [sanctions, pep]; scope to one to narrow."
      },
      "threshold": {
       "type": "number",
       "maximum": 1,
       "minimum": 0,
       "description": "Similarity cut (0..1). Default from the screening.match.threshold tunable (0.7)."
      },
      "nationality": {
       "type": "string",
       "description": "Optional nationality (reserved; not yet used in scoring)."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/relaystation-sanctions-pep-screening-646abfa4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relaystation.ai](https://www.zero.xyz/host/api.relaystation.ai/llms.txt)
