# agentbit.app Stablecoin Market Data

> agentbit.app Stablecoin Market Data is a paid API for AI agents from agentbit.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns ranked stablecoin market data including current price, peg deviation, circulating supply, peg mechanism, and supported chains — with optional filtering by symbol or depeg threshold.

## Facts

- Endpoint: POST https://agentbit.app/v1/defi/stablecoins
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbit-app-stablecoin-market-data-14c63785
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GJ7ZuEuFWn4MdDzsrDDmM

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 agentbit-app-stablecoin-market-data-14c63785 -d '<json body>'
```

Example prompt: Show me the top 20 stablecoins ranked by market cap, including their current price and peg deviation — and flag any that are depegged by more than 0.5%.

## When to prefer this

Choose this endpoint when you need structured, agent-ready stablecoin market data — especially peg deviation — without building a DefiLlama integration yourself. Ideal for depeg screening, portfolio monitoring, or quickly checking a specific stablecoin's health. Prefer over raw DefiLlama API when you need a pre-normalized, filtered response with peg deviation already computed and ranked by market cap.

## Known failure modes

- Invalid limit value outside 1-50 range returns validation error
- Symbol filter returning zero results if substring doesn't match any tracked coin
- max_peg_deviation_percent filter returning empty set if no coins exceed the threshold
- Stale data if DefiLlama upstream is delayed (up to 10 minutes lag)
- Payment failure if insufficient USDC balance for x402 micropayment

## How this service works

Stablecoin market data with the number agents paying in USDC actually need: current price and PEG DEVIATION per coin, circulating supply, peg mechanism and chains, ranked by market cap. Filter by symbol or screen for depegs (absolute deviation above a threshold). Open DefiLlama data, refreshed every 10 minutes.

## Output

A JSON object containing an array of stablecoins each with name, symbol, current price, peg_deviation_percent (e.g. -0.02 means 2 cents below peg), circulating_usd, peg_type, peg_mechanism, and supported chains — plus result_count and universe_size metadata. Data is sourced from DefiLlama and refreshed every 10 minutes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max results (1-50, default 15)"
  },
  "symbol": {
   "type": "string",
   "description": "Filter by symbol substring, e.g. USDC"
  },
  "max_peg_deviation_percent": {
   "type": "number",
   "description": "Depeg screen: only coins with ABSOLUTE deviation >= this value (e.g. 0.5)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "note": "peg_deviation_percent = (price - 1.00) * 100 for USD-pegged assets.",
  "stablecoins": [
   {
    "name": "USD Coin",
    "price": 0.9998,
    "chains": [
     "Ethereum",
     "Base",
     "Solana"
    ],
    "symbol": "USDC",
    "peg_type": "peggedUSD",
    "peg_mechanism": "fiat-backed",
    "circulating_usd": 72000000000,
    "peg_deviation_percent": -0.02
   }
  ],
  "result_count": 1,
  "universe_size": 180
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbit-app-stablecoin-market-data-14c63785/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbit.app](https://www.zero.xyz/host/agentbit.app/llms.txt)
