# RelayShield Wallet Screen Batch

> RelayShield Wallet Screen Batch is a paid API for AI agents from api.relayshield.net, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Batch-screens multiple blockchain wallet addresses across EVM and Solana chains for risk flags and risk levels in a single call

## Facts

- Endpoint: POST https://api.relayshield.net/v1/payg/wallet-screen-batch
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relayshield-wallet-screen-batch-bddb5331
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9-9rm5-hQCV4-Zk24-TKo

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 relayshield-wallet-screen-batch-bddb5331 -d '<json body>'
```

Example prompt: Screen these wallet addresses for risk before I send funds — 0xd8da6bf26964af9d7eed9e03e53415d37aa96045 on EVM and 9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM on Solana — and tell me if any are high risk or flagged.

## When to prefer this

Use this endpoint when you need to screen multiple wallet addresses in a single API call rather than one at a time, saving latency and cost. Ideal for compliance workflows, pre-transaction checks, or onboarding pipelines where batching is essential. Prefer this over single-address endpoints when you have 2 or more addresses to check simultaneously across EVM and/or Solana chains.

## Known failure modes

- Invalid or malformed wallet address returns an error field for that address entry
- Unsupported chain identifier causes per-address error
- Empty batch input may return a validation error
- Payment failure via x402 protocol prevents the call from executing
- Rate limiting or quota exceeded returns an HTTP error

## How this service works

RelayShield Landing Site

## Output

Returns a JSON object with a results array where each entry contains the wallet address, chain, risk_level (e.g. LOW, MEDIUM, HIGH), risk_flags array, and any error. Also includes aggregate counts: total screened and number of high-risk addresses found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "addresses": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "maxItems": 10,
   "description": "Up to 10 wallet addresses (any chain: EVM, Solana, TON, Bitcoin)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "results": [
    {
     "chain": "evm",
     "error": null,
     "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
     "risk_flags": [],
     "risk_level": "LOW"
    },
    {
     "chain": "solana",
     "error": null,
     "address": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
     "risk_flags": [],
     "risk_level": "LOW"
    }
   ],
   "screened": 2,
   "high_risk": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/relayshield-wallet-screen-batch-bddb5331/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relayshield.net](https://www.zero.xyz/host/api.relayshield.net/llms.txt)
