/v1/stablecoins
Stablecoins by circulating supply
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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",
…