# Solidus Capital Wallet Sanctions & Blacklist Checker

> Solidus Capital Wallet Sanctions & Blacklist Checker is a paid API for AI agents from agent.soliduscapital.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Screens a single blockchain wallet address against sanctions and blacklist databases to determine if it is flagged for compliance purposes.

## Facts

- Endpoint: POST https://agent.soliduscapital.io/check
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solidus-capital-wallet-sanctions-blacklist-checker-cfde3fe9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F00CPb7uzqmTK_E5GEZsv

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 solidus-capital-wallet-sanctions-blacklist-checker-cfde3fe9 -d '<json body>'
```

Example prompt: Can you run a sanctions and blacklist check on this wallet address — 0x4e9ce36E442e55EcD9025B9a6E0D88485d628A67 — before we process their payment?

## When to prefer this

Use this endpoint when you need real-time, per-address compliance screening of a blockchain wallet before executing a transaction, onboarding a user, or accepting funds — particularly when you need to check EVM (0x) or Tron (base58) addresses and need a lightweight single-query API with pay-per-use pricing.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Unsupported blockchain address format not recognized
- Network timeout or service unavailability
- Payment failure via x402 protocol blocks the request
- Empty address field returns validation error

## How this service works

Compliance sanction/blacklist check for a single wallet address — one query.

## Output

A compliance result indicating whether the submitted wallet address appears on any sanctions list or blacklist, enabling the caller to make a risk-based decision about interacting with that address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "minLength": 1,
   "description": "EVM (0x...), Tron (base58) or other-chain wallet address to screen. Sent in the JSON body as { \"address\": \"...\" }; any query string is ignored."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solidus-capital-wallet-sanctions-blacklist-checker-cfde3fe9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.soliduscapital.io](https://www.zero.xyz/host/agent.soliduscapital.io/llms.txt)
