# Stablecoin Market Overview

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

Returns a live full-market overview of stablecoins including total market cap, top stablecoins ranked by circulating supply, concentration metrics, and breakdown by peg mechanism (fiat-backed vs algorithmic).

## Facts

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

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-c93e6813
```

Example prompt: Give me a full live overview of the stablecoin market right now — total market cap, which stablecoins are biggest by circulating supply, and how much of the market is algorithmic versus fiat-backed.

## When to prefer this

Use this endpoint when you need a holistic, real-time view of the entire stablecoin market — total supply, rankings, and risk composition — rather than data on a single stablecoin token or price. Ideal for systemic risk assessment, market structure research, or DeFi macro analysis where LLM training data is too stale.

## Known failure modes

- Payment not included or insufficient — 402 Payment Required response
- Upstream data provider unavailable — 503 or 500 error with no market data returned
- Rate limit exceeded — 429 Too Many Requests
- Malformed request path — 404 Not Found

## How this service works

Full stablecoin market overview - total market cap, top stablecoins by circulating supply, concentration and breakdown by peg mechanism (fiat vs algorithmic) - live systemic-risk data absent from LLM training. stablecoin market, stablecoin ranking, total stablecoin supply, stablecoin market cap, algorithmic stablecoin share Accepts payment on Base or Solana — either network works.

## Output

A structured snapshot of the stablecoin market including: total market cap across all stablecoins, a ranked list of top stablecoins by circulating supply, market concentration metrics (e.g. top-N share), and a breakdown of supply by peg mechanism (fiat-collateralized vs algorithmic). All data is live and not available in LLM training data.

## Example request

```json
{}
```

## 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": {
      "top": {
       "type": "string",
       "description": "Top N stablecoins, default 15, max 50"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecoin-market-overview-c93e6813/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)
