/v1/symbols
Major coins covered by compare
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/cryptovolatility-api/v1/symbols" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptovolatility-api/v1/symbols", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptovolatility-api/v1/symbols");
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/cryptovolatility-api/v1/symbols",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Any Binance USDT pair works via symbol=<BASE> (e.g. symbol=PEPE). The compare board covers these majors:",
"count": 12,
"majors": [
"BTC",
"ETH",
"SOL",
"BNB",
"XRP",
"DOGE",
"ADA",
"AVAX",
"LINK",
"DOT",
"MATIC",
"LTC"
]
},
"meta": {
"timestamp": "2026-06-09T03:02:24.610Z",
"request_id": "c1ec8f99-dbce-4a63-a96e-9f00328e493b"
},
"status": "ok",
"message": "Symbols retrieved successfully",
"success": true
}