# booAIP Stablecoins Data

> booAIP Stablecoins Data 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-13).

Returns real-time circulating supply and peg deviation data for a given stablecoin by symbol

## Facts

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

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-stablecoins-data-a7d87de1
```

Example prompt: What's the current circulating supply of USDT and how far is it deviating from its peg right now?

## When to prefer this

Use this endpoint when an AI agent needs real-time stablecoin circulating supply and peg health data in a pay-per-call model using USDC on Base via x402. Ideal for crypto-native agent workflows that already support x402 micropayments and need lightweight, on-demand stablecoin metrics without a subscription.

## Known failure modes

- Unrecognized stablecoin symbol returns found: false
- Network or upstream data provider outage returns an error response
- Invalid request body format returns a 400 error
- Payment failure via x402 prevents access to the endpoint

## How this service works

Stablecoin circulating supply, price and peg deviation (DefiLlama). Body: { symbol? }.

## Output

A JSON object with a found boolean, the stablecoin symbol, its circulating supply in USD, and the percentage deviation from its target peg (e.g. {found: true, symbol: 'USDT', circulatingUsd: 100000000000, pegDeviationPct: 0.01}).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Stablecoin symbol (e.g. USDT). Omit for top 10."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "found": true,
  "symbol": "USDT",
  "circulatingUsd": 100000000000,
  "pegDeviationPct": 0.01
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/booaip-stablecoins-data-a7d87de1/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)
