Aller au contenu
GET /v1/stablecoins

Stablecoins by circulating supply

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/defillama-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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",
  
…