Skip to content
GET /v1/symbols

Major coins covered by compare

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/cryptovolatility-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}