# TokenGuard Wallet Brief

> TokenGuard Wallet Brief is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Screens a wallet or contract address for OFAC sanctions and returns a concise on-chain risk brief including transaction count and verdict

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/brief/wallet
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-wallet-brief-12f77ac2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ijgtBml8eharacGzwzWMi

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 tokenguard-wallet-brief-12f77ac2 -d '<json body>'
```

Example prompt: Can you run a sanctions check on wallet address 0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE on Base and tell me if it's flagged by OFAC?

## When to prefer this

Choose this endpoint when you need a fast, lightweight OFAC/sanctions compliance check on a specific wallet or contract address on Base or other supported EVM chains. It is ideal for pre-transaction compliance gating, counterparty screening in DeFi workflows, or onboarding checks where you need a binary sanctioned/clear verdict plus basic on-chain metadata like transaction count. Prefer this over full blockchain explorers when you need a structured, machine-readable compliance summary rather than raw chain data.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported chain identifier may cause a lookup failure
- Address not found on the specified chain may return incomplete data
- Network timeout or upstream provider unavailability
- Rate limiting or payment failure via x402 micropayment protocol

## How this service works

One-call counterparty check: wallet activity profile (EOA vs contract, balances, tx count, risk flags) plus OFAC SDN sanctions screening, resolved into a single clear/blocked verdict. Reports 'unscreened' rather than 'clear' if the sanctions list could not be consulted.

## Output

Returns a JSON object with: verdict (e.g. 'clear'), tx_count (total on-chain transactions), sanctioned (boolean), is_contract (boolean), sanctions_list (e.g. 'OFAC SDN'), and sanctions_screened (boolean confirming the check was performed).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "description": "Chain (default base)"
  },
  "address": {
   "type": "string",
   "description": "Wallet or contract address"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "verdict": "clear",
  "tx_count": 412,
  "sanctioned": false,
  "is_contract": false,
  "sanctions_list": "OFAC SDN",
  "sanctions_screened": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-wallet-brief-12f77ac2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
