Stablecoin circulating supply and chain distribution
curl "https://api.crypton.dev/v2/defi/stablecoins" \ -H "X-API-Key: YOUR_API_KEY"
{ "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 } }
Show Stablecoin
Tether
USD Coin
Dai
USDT
USDC
DAI
peggedUSD
peggedEUR
peggedCNY
# 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)}]'