Skip to main content

GET /v2/defi/stablecoins

Returns stablecoin data including circulating supply and chain distribution, sourced from on-chain stablecoin data.

Example

curl "https://api.crypton.dev/v2/defi/stablecoins" \
  -H "X-API-Key: YOUR_API_KEY"
Response
{
  "status": "ok",
  "timestamp": 1711670400000,
  "data": {
    "stablecoins": [
      {
        "name": "Tether",
        "symbol": "USDT",
        "peg_type": "peggedUSD",
        "circulating": 143000000000.0,
        "chains": ["Ethereum", "Tron", "BSC", "Solana", "Arbitrum", "Avalanche"]
      },
      {
        "name": "USD Coin",
        "symbol": "USDC",
        "peg_type": "peggedUSD",
        "circulating": 52000000000.0,
        "chains": ["Ethereum", "Solana", "Base", "Arbitrum", "Polygon"]
      }
    ],
    "count": 50
  }
}

Response Fields

data.stablecoins
array

Data Source

Data Source — Aggregated stablecoin supply from on-chain sources Tracks 50+ stablecoins across all major chains. Covers USD-pegged, EUR-pegged, and algorithmic stablecoins.

Live Testing

# All stablecoins
curl -s "https://api.crypton.dev/v2/defi/stablecoins" -H "X-API-Key: YOUR_KEY" \
  | jq '[.data.stablecoins[:5][] | {symbol, circulating_b: (.circulating / 1e9 | round), chains: (.chains | length)}]'