# booAIP Wallet Analysis API

> booAIP Wallet Analysis API 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-14).

Analyzes a crypto wallet address to return risk scoring, whale status, transaction count, and sanctions screening

## Facts

- Endpoint: GET https://booaip.vercel.app/api/wallet
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/booaip-wallet-analysis-api-a2f8f5f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O8pa9v_TsptSva4jL1CX0

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-wallet-analysis-api-a2f8f5f2
```

Example prompt: Can you run a wallet analysis on 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 — I need to know if it's a whale, how many transactions it has, whether it's sanctioned, and what its overall wallet score is?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call wallet risk profile combining whale detection, sanctions screening, and a composite reputation score in a single call — especially useful for AI agents doing compliance checks or pre-transaction due diligence on Base/EVM wallets without a subscription.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported chain or address format not recognized
- Rate limiting or payment failure via x402 protocol
- Wallet with no on-chain history may return minimal data
- Service unavailability on Vercel hosting infrastructure

## How this service works

Pay-per-call crypto/web3 data for AI agents. USDC via x402 on Base.

## Output

Returns a JSON object with the wallet address, a boolean isWhale flag indicating large holdings, a txCount integer of total transactions, a sanctioned boolean for OFAC/sanctions screening, and a numeric walletScore (0-100) representing overall wallet risk and reputation.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "wallet": "0x...",
  "isWhale": false,
  "txCount": 1234,
  "sanctioned": false,
  "walletScore": 90
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/booaip-wallet-analysis-api-a2f8f5f2/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)
