/v1/search
Find stablecoins by name or symbol
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/stablecoinsupply-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stablecoinsupply-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stablecoinsupply-api/v1/search");
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/stablecoinsupply-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 3,
"query": "usdc",
"source": "DeFiLlama",
"matched": 3,
"stablecoins": [
{
"id": "2",
"name": "USD Coin",
"symbol": "USDC",
"peg_type": "peggedUSD",
"circulating_usd": 74950875208.41
},
{
"id": "307",
"name": "USD CoinVertible",
"symbol": "USDCV",
"peg_type": "peggedUSD",
"circulating_usd": 12589971.95
},
{
"id": "164",
"name": "USDCB",
"symbol": "USDCB",
"peg_type": "peggedUSD",
"circulating_usd": 225172.36
}
]
},
"meta": {
"timestamp": "2026-06-14T08:04:14.929Z",
"request_id": "fcc8d3d1-7eff-478f-8a2f-dd420c2fb721"
},
"status": "ok",
"message": "Stablecoins retrieved successfully",
"success": true
}