# Obol Sanctions Address Screening

> Obol Sanctions Address Screening is a paid API for AI agents from obol.danieldutoit.net, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Screens a blockchain wallet address against sanctions lists and returns verified compliance status

## Facts

- Endpoint: GET https://obol.danieldutoit.net/v1/sanctions/address-screening
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/obol-sanctions-address-screening-80e038d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fapOYLUnn_SfxgJ4CPyIT

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 obol-sanctions-address-screening-80e038d4
```

Example prompt: Can you screen the wallet address 0x1234567890abcdef1234567890abcdef12345678 for sanctions — I need to know if it's flagged before I send any funds to it.

## When to prefer this

Choose this endpoint when you need verified, pay-per-call blockchain address sanctions screening settled in USDC on Base via x402, without requiring a subscription or API key setup. Ideal for agents that need on-demand compliance checks for crypto wallet addresses before executing transactions, onboarding users, or interacting with DeFi protocols.

## Known failure modes

- Missing or malformed address parameter returns an error
- Address not found in screening database may return inconclusive result
- Payment failure via x402 protocol blocks the request
- Network timeout returns no result
- Rate limiting if too many requests are made in short succession

## How this service works

Obol sells verified blockchain data over x402, settled in USDC on Base.

## Output

Returns a structured object indicating whether the queried blockchain address appears on any sanctions lists, along with relevant compliance flags or risk indicators derived from verified on-chain data.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "address": "0x1111111111111111111111111111111111111111",
  "matched": false,
  "matches": [],
  "coverage": {
   "sources": [
    "EU",
    "OFAC",
    "UK"
   ],
   "match_type": "exact_address",
   "maximum_matches": 100,
   "data_observed_through": "2026-09-04T05:32:10.523Z",
   "entity_names_returned": false
  },
  "disclaimer": "Informational screening aid only. A non-match is not proof that an address is unrestricted, and this response is not legal advice."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/obol-sanctions-address-screening-80e038d4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from obol.danieldutoit.net](https://www.zero.xyz/host/obol.danieldutoit.net/llms.txt)
