# Stablecoin Market Overview API

> Stablecoin Market Overview API is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Returns top stablecoins ranked by circulating market cap with peg price, peg mechanism, and cross-chain supply data for macro and risk analysis.

## Facts

- Endpoint: GET https://api.x402node.dev/stablecoin/overview
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecoin-market-overview-api-6c4e8a4e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4XdCA445hCIVZLNo_1uxG

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 stablecoin-market-overview-api-6c4e8a4e
```

Example prompt: Give me a live overview of the top stablecoins ranked by circulating market cap — I want to see their peg prices, peg mechanisms, and total supply aggregated across all chains.

## When to prefer this

Use this endpoint when you need a quick macro snapshot of the stablecoin landscape — top coins by supply, their peg health, and mechanism type — without querying individual chain APIs. Ideal for DeFi dashboards, risk monitoring, and macro signal pipelines where cross-chain aggregation is required.

## Known failure modes

- Upstream data provider outage returns 502 or empty dataset
- Stale data if aggregation pipeline is delayed
- Payment failure (402) if USDC balance is insufficient
- Rate limiting if called too frequently

## How this service works

Top stablecoins ranked by circulating market cap, with current peg price and peg mechanism, aggregated across all chains. Macro and risk signal for agents. Live stablecoin overview. stablecoin market cap, usdt usdc ranking, peg, stablecoin supply, defi macro Accepts payment on Base or Solana — either network works.

## Output

A ranked list of top stablecoins with each entry including: stablecoin name/ticker, circulating market cap in USD, current peg price, peg mechanism (e.g. fiat-backed, algorithmic, crypto-collateralized), and supply data aggregated across all chains. Useful as a DeFi macro and risk signal snapshot.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "string",
       "description": "max rows (default 15)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecoin-market-overview-api-6c4e8a4e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
