Zum Inhalt springen
GET /v1/tickers

All markets for a quote ranked by 24h turnover

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 3,
        "quote": "UAH",
        "source": "EXMO",
        "tickers": [
            {
                "ask": 3031415.06,
                "bid": 2899486.43,
                "base": "BTC",
                "last": 2970000,
                "quote": "UAH",
                "market": "BTC_UAH",
                "spread": 131928.63,
                "avg_24h": 2973721.11992117,
                "low_24h": 2899486.42,
                "high_24h": 3044000,
                "base_volume_24h": 117.7022324,
                "quote_volume_24h": 349292973.05
            },
            {
                "ask": 80008.98,
                "bid": 76600.01,
                "base": "ETH",
                "last": 78314.06,
                "quote": "UAH",
                "market": "ETH_UAH",
                "spread": 3408.97,
                "avg_24h": 78278.95850184,
                "low_24h": 77964.4,
                "high_24h": 78645.4,
                "base_volume_24h": 110.32575208,
                "quote_volume_24h": 8624475.16
            },
            {
                "ask": 47.7597,
                "bid": 47.0239,
                "base": "USDT",
                "last": 47.4,
                "quote": "UAH",
                "market": "USDT_UAH",
                "spread": 0.7358,
                "avg_24h": 47.37307651,
                "low_24h": 46.6597,
                "high_24h": 47.9769,
                "base_volume_24h": 175317.66793628,
                "quote_volume_24h": 8310057.46
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-11T07:45:05.414Z",
        "request_id": "4d41d9a8-7edb-45ce-bb2e-23c441eb45f6"
    },
    "status": "ok",
    "message": "Tickers retrieved successfully",
    "success": true
}