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/coinw-api

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 50,
        "quote": "USDT",
        "source": "CoinW",
        "tickers": [
            {
                "ask": 62731.06,
                "bid": 62730.92,
                "base": "BTC",
                "last": 62717.24,
                "quote": "USDT",
                "market": "BTC_USDT",
                "spread": 0.14,
                "low_24h": 60800.07,
                "high_24h": 62996.85,
                "change_24h_pct": 1.65,
                "base_volume_24h": 10470.76915454,
                "quote_volume_24h": 656697742.05
            },
            {
                "ask": 1654.65,
                "bid": 1654.62,
                "base": "ETH",
                "last": 1654.64,
                "quote": "USDT",
                "market": "ETH_USDT",
                "spread": 0.03,
                "low_24h": 1604.71,
                "high_24h": 1667.19,
                "change_24h_pct": 0.97,
                "base_volume_24h": 133438.77996422,
                "quote_volume_24h": 220793142.88
            },
            {
                "ask": 65.042,
                "bid": 64.92801,
                "base": "SOL",
                "last": 65.00499,
                "quote": "USDT",
                "market": "SOL_USDT",
                "spread": 0.11399,
                "low_24h": 62.34133,
                "high_24h": 65.76663,
                "change_24h_pct": 0.7,
                "base_volume_24h": 1449862.10431676,
                "quote_volume_24h": 94248271.59
            },
            {
                "ask": 0.9999,
                "bid": 0.9996,
                "base": "USD1",
                "last": 0.9998,
                "quote": "USDT",
                "market": "USD1_USDT",
                "spread": 0.0003,
                "low_24h": 0.9991,
                "high_24h": 1.0004,
                "change_24h_pct": 0.02,
                "base_volume_24h": 42907204.93688738,
                "quote_volume_24h": 42898623.5
            },
            {
                "ask": 0.0148,
                "bid": 0.01477,
                "base": "BABY",
                "last": 0.01479,
                "quote": "USDT",
                "market": "BABY_USDT",
                "spread": 3.0e-5,
                "low_24h": 0.01455,
                "high_24h": 0.01648,
                "change_24h_pct": -9.15,
                "base_volume_24h": 2235044222.3069644,
                "quote_volume_24h": 33056304.05
            },
            {
                "ask": 0.1908,
                "bid": 0.1905,
                "base": "XLM",
                "last": 0.1907,
                "quote": "USDT",
                "market": "XLM_USDT",
                "spread": 0.0003,
                "low_24h": 0.1814,
                "high_24h": 0.1937,
                "change_24h_pct": 2.42,
                "base_volume_24h": 172983809.4960671,
                "quote_volume_24h": 32988012.47
            },
            {
                "ask
…