Zum Inhalt springen
GET /v1/symbols

Major coins covered by scan

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/cryptobasis-api/v1/symbols" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptobasis-api/v1/symbols", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptobasis-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/cryptobasis-api/v1/symbols",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

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

{
    "data": {
        "note": "Any Bybit coin with both a USDT spot and a USDT linear perp works via symbol=<BASE>. The scan board covers these majors:",
        "count": 10,
        "majors": [
            "BTC",
            "ETH",
            "SOL",
            "BNB",
            "XRP",
            "DOGE",
            "ADA",
            "AVAX",
            "LINK",
            "LTC"
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:07.529Z",
        "request_id": "ff94a4bb-0d53-44f7-a911-39cbf5a0ca85"
    },
    "status": "ok",
    "message": "Symbols retrieved successfully",
    "success": true
}