# booAIP Crypto Token Snapshot API

> booAIP Crypto Token Snapshot API is a paid API for AI agents from booaip.vercel.app, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Returns a real-time data snapshot for a given crypto token including price, market data, and honeypot/safety verdict

## Facts

- Endpoint: GET https://booaip.vercel.app/api/snapshot
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/booaip-crypto-token-snapshot-api-16dfddda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_elH9CluZnmkAxlQuZQItz

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-crypto-token-snapshot-api-16dfddda
```

Example prompt: Can you pull a full snapshot for the token at 0x1234...abcd — give me its current USD price and tell me whether it's flagged as a honeypot or safe to trade?

## When to prefer this

Use this endpoint when an AI agent needs a single-call, pay-per-use snapshot of a token's price and safety status without requiring API key setup — ideal for autonomous agents using x402 micropayments on Base that need to assess DeFi token risk before acting

## Known failure modes

- Invalid or unsupported token contract address returns an error
- Token not indexed or too new returns no market data
- Network issues with the Base chain may cause stale or missing data
- Payment failure via x402/USDC prevents the call from completing

## How this service works

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

## Output

A JSON object containing the token contract address, current USD price, market data object, a boolean honeypot flag, and a plain-English safety verdict string (e.g. 'OK')

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "description": "eth, bnb, base."
  },
  "token": {
   "type": "string",
   "description": "Token contract address."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "token": "0x...",
  "market": {
   "priceUsd": 0.01
  },
  "safety": {
   "honeypot": false
  },
  "safetyVerdict": "OK"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/booaip-crypto-token-snapshot-api-16dfddda/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)
