# booAIP Sanctions Check

> booAIP Sanctions Check is a paid API for AI agents from booaip.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Checks whether a crypto wallet address is on a sanctions list and returns a PASS/FAIL verdict

## Facts

- Endpoint: GET https://booaip.vercel.app/api/sanctions
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/booaip-sanctions-check-40ee31da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bxpQAK0FOqSgMDW5Lv1IM

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 booaip-sanctions-check-40ee31da
```

Example prompt: Can you check if the wallet address 0x1234abcd... is sanctioned or flagged by any regulatory body before I proceed with this transaction?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call sanctions screening for a specific crypto wallet address without a subscription. Ideal for AI agents handling crypto transactions that require lightweight compliance checks on Base/USDC infrastructure.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Address not found in sanctions database may return PASS by default
- Service unavailable or payment failure via x402 results in no response
- Rate limiting or payment issues with USDC on Base chain

## How this service works

Screen an EVM wallet against OFAC SDN crypto address list (PASS/BLOCK). Body: { address }.

## Output

Returns a JSON object with the queried address, a verdict field ('PASS' or similar), and a boolean 'sanctioned' flag indicating whether the address appears on a sanctions list.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "EVM wallet address."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "address": "0x...",
  "verdict": "PASS",
  "sanctioned": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/booaip-sanctions-check-40ee31da/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from booaip.vercel.app](https://www.zero.xyz/host/booaip.vercel.app/llms.txt)
