Zum Inhalt springen
GET /v1/tickers

All spot markets for a quote by volume

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 50,
        "quote": "USD",
        "source": "Crypto.com",
        "tickers": [
            {
                "ask": 62664.47,
                "bid": 62664.46,
                "base": "BTC",
                "last": 62664.46,
                "quote": "USD",
                "market": "BTC_USD",
                "spread": 0.01,
                "low_24h": 60699.31,
                "high_24h": 62958.85,
                "timestamp": 1781164166470,
                "volume_24h": 6940.1596,
                "change_24h_pct": 1.62,
                "volume_quote_24h": 429083230.82
            },
            {
                "ask": 1652.74,
                "bid": 1652.73,
                "base": "ETH",
                "last": 1652.81,
                "quote": "USD",
                "market": "ETH_USD",
                "spread": 0.01,
                "low_24h": 1601.91,
                "high_24h": 1667.46,
                "timestamp": 1781164166304,
                "volume_24h": 191151.0322,
                "change_24h_pct": 0.91,
                "volume_quote_24h": 312363267.38
            },
            {
                "ask": 64.97,
                "bid": 64.96,
                "base": "SOL",
                "last": 64.96,
                "quote": "USD",
                "market": "SOL_USD",
                "spread": 0.01,
                "low_24h": 62.3,
                "high_24h": 65.74,
                "timestamp": 1781164165501,
                "volume_24h": 451150.403,
                "change_24h_pct": 0.68,
                "volume_quote_24h": 28955254.98
            },
            {
                "ask": 1.1141,
                "bid": 1.114,
                "base": "XRP",
                "last": 1.114,
                "quote": "USD",
                "market": "XRP_USD",
                "spread": 0.0001,
                "low_24h": 1.0875,
                "high_24h": 1.1372,
                "timestamp": 1781164163304,
                "volume_24h": 15733157.2,
                "change_24h_pct": -0.25,
                "volume_quote_24h": 17476859.71
            },
            {
                "ask": 0.16642,
                "bid": 0.16638,
                "base": "ADA",
                "last": 0.1664,
                "quote": "USD",
                "market": "ADA_USD",
                "spread": 4.0e-5,
                "low_24h": 0.15818,
                "high_24h": 0.16751,
                "timestamp": 1781164163927,
                "volume_24h": 34903180.3,
                "change_24h_pct": 2.93,
                "volume_quote_24h": 5674893.13
            },
            {
                "ask": 4099.34,
                "bid": 4099.33,
                "base": "XAUT",
                "last": 4100.12,
                "quote": "USD",
                "market": "XAUT_USD",
                "spread": 0.01,
                "low_24h": 4017.18,
                "high_24h": 4178.78,
                "timestamp": 1781164163470,
       
…