# Orders of Magnitude Sanctions Screening API

> Orders of Magnitude Sanctions Screening API is a paid API for AI agents from x402-api-production-5133.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Screens a person or entity name against global sanctions lists and returns a risk/match assessment

## Facts

- Endpoint: GET https://x402-api-production-5133.up.railway.app/data/sanctions-screening
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orders-of-magnitude-sanctions-screening-api-4aadff11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nJnjL-2TJc_LmCTyor6V4

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 orders-of-magnitude-sanctions-screening-api-4aadff11
```

Example prompt: Can you run a sanctions screening check on the name 'Viktor Petrov' to see if they appear on any global sanctions or watchlists?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call sanctions screening check via the x402 micropayment protocol — ideal for agents that need to perform one-off or low-volume AML/KYC compliance checks without a subscription to a full compliance platform. Best suited for fast, automated onboarding flows or transaction screening where $0.01 per call economics make sense.

## Known failure modes

- Missing required 'name' parameter returns a 400 or validation error
- Payment not attached or insufficient USDC balance causes a 402 Payment Required response
- Name string too ambiguous or empty string may return no results or an error
- Service downtime on Railway deployment may cause 5xx errors
- Partial or common names may yield false positives or inconclusive results

## How this service works

Data and AI services via x402 payment protocol

## Output

Returns a structured object indicating whether the queried name matches any entries on global sanctions databases (such as OFAC SDN, UN, EU sanctions lists), likely including match status, confidence or risk score, and relevant list details if a match is found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "name"
 ],
 "properties": {
  "name": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orders-of-magnitude-sanctions-screening-api-4aadff11/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-api-production-5133.up.railway.app](https://www.zero.xyz/host/x402-api-production-5133.up.railway.app/llms.txt)
