Zum Inhalt springen
GET /v1/stablecoins

Stablecoins by circulating supply

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/defillama-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/defillama-api/v1/stablecoins" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/defillama-api/v1/stablecoins", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/defillama-api/v1/stablecoins");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/defillama-api/v1/stablecoins",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 50,
        "total": 380,
        "stablecoins": [
            {
                "name": "Tether",
                "chains": [
                    "Tron",
                    "Ethereum",
                    "BSC",
                    "Solana",
                    "Arbitrum",
                    "Aptos",
                    "Polygon",
                    "Plasma"
                ],
                "symbol": "USDT",
                "peg_type": "peggedUSD",
                "peg_mechanism": "fiat-backed",
                "circulating_usd": 187915477322
            },
            {
                "name": "USD Coin",
                "chains": [
                    "Ethereum",
                    "Solana",
                    "Hyperliquid L1",
                    "Base",
                    "Arbitrum",
                    "Polygon",
                    "BSC",
                    "Avalanche"
                ],
                "symbol": "USDC",
                "peg_type": "peggedUSD",
                "peg_mechanism": "fiat-backed",
                "circulating_usd": 76000419807
            },
            {
                "name": "Sky Dollar",
                "chains": [
                    "Ethereum",
                    "Base",
                    "OP Mainnet",
                    "Unichain",
                    "Arbitrum",
                    "Solana",
                    "Avalanche"
                ],
                "symbol": "USDS",
                "peg_type": "peggedUSD",
                "peg_mechanism": "crypto-backed",
                "circulating_usd": 8847192072
            },
            {
                "name": "World Liberty Financial USD",
                "chains": [
                    "Ethereum",
                    "BSC",
                    "Solana",
                    "Aptos",
                    "Tron",
                    "Monad",
                    "Plume Mainnet",
                    "Abcore"
                ],
                "symbol": "USD1",
                "peg_type": "peggedUSD",
                "peg_mechanism": "fiat-backed",
                "circulating_usd": 4732405587
            },
            {
                "name": "Dai",
                "chains": [
                    "Ethereum",
                    "Polygon",
                    "Fantom",
                    "BSC",
                    "Arbitrum",
                    "OP Mainnet",
                    "PulseChain",
                    "Avalanche"
                ],
                "symbol": "DAI",
                "peg_type": "peggedUSD",
                "peg_mechanism": "crypto-backed",
                "circulating_usd": 4599964009
            },
            {
                "name": "Ethena USDe",
                "chains": [
                    "Ethereum",
                    "Solana",
                    "MegaETH",
                    "BSC",
                    "TON",
                    "Plasma",
                    "Mantle",
  
…