# booAIP Token Quote

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

Returns the current USD price and metadata for a crypto token by its contract address

## Facts

- Endpoint: GET https://booaip.vercel.app/api/quote
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/booaip-token-quote-3858fc0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t-yTm5aOydY7eEol5Abms

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-token-quote-3858fc0c
```

Example prompt: What's the current USD price for the MKR token at contract address 0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2?

## When to prefer this

Choose this endpoint when you need a quick USD price lookup for a specific ERC-20 token identified by its contract address, especially for DeFi or AI agent workflows requiring pay-per-call pricing via x402/USDC on Base. Prefer this over broader market APIs when you already have the contract address and need a lightweight, low-cost, programmatic price feed without API key management.

## Known failure modes

- Token contract address not found or not indexed — returns found: false
- Invalid contract address format — may return error or found: false
- Token exists on-chain but has no reliable price feed — found: false
- Network or upstream data provider outage — HTTP 500 or timeout
- Payment failure via x402 — HTTP 402 if USDC payment not processed

## How this service works

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

## Output

A JSON object containing: found (boolean indicating if price data was available), token (the queried contract address), symbol (the token ticker e.g. 'MKR'), and priceUsd (current price in USD as a float).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "token": {
   "type": "string",
   "description": "Token contract address (0x...)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "found": true,
  "token": "0x...",
  "symbol": "MKR",
  "priceUsd": 1234.5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/booaip-token-quote-3858fc0c/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)
