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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 7,
        "quote": "CZK",
        "source": "CoinMate",
        "tickers": [
            {
                "ask": 1317693,
                "bid": 1316631,
                "base": "BTC",
                "last": 1317729,
                "quote": "CZK",
                "market": "BTC_CZK",
                "spread": 1062,
                "low_24h": 1284730,
                "high_24h": 1327824,
                "open_24h": 1300513,
                "change_24h": 17216,
                "change_24h_pct": 1.32378531,
                "base_volume_24h": 11.66274556,
                "quote_volume_24h": 15368338.04
            },
            {
                "ask": 21.0249,
                "bid": 21.0248,
                "base": "USDC",
                "last": 21.0248,
                "quote": "CZK",
                "market": "USDC_CZK",
                "spread": 0.0001,
                "low_24h": 20.9379,
                "high_24h": 21.03,
                "open_24h": 20.9379,
                "change_24h": 0.0869,
                "change_24h_pct": 0.41503685,
                "base_volume_24h": 96121.42396307,
                "quote_volume_24h": 2020933.71
            },
            {
                "ask": 34669.9,
                "bid": 34565.2,
                "base": "ETH",
                "last": 34774.3,
                "quote": "CZK",
                "market": "ETH_CZK",
                "spread": 104.7,
                "low_24h": 33732.1,
                "high_24h": 35088.8,
                "open_24h": 34352.4,
                "change_24h": 421.9,
                "change_24h_pct": 1.22815291,
                "base_volume_24h": 25.82867808,
                "quote_volume_24h": 898174.2
            },
            {
                "ask": 23.3514,
                "bid": 23.3148,
                "base": "XRP",
                "last": 23.4071,
                "quote": "CZK",
                "market": "XRP_CZK",
                "spread": 0.0366,
                "low_24h": 22.9175,
                "high_24h": 23.9822,
                "open_24h": 23.5916,
                "change_24h": -0.1845,
                "change_24h_pct": -0.78205802,
                "base_volume_24h": 33078.35771823,
                "quote_volume_24h": 774268.43
            },
            {
                "ask": 1384.9291,
                "bid": 1379.5414,
                "base": "SOL",
                "last": 1384.9291,
                "quote": "CZK",
                "market": "SOL_CZK",
                "spread": 5.3877,
                "low_24h": 1311.0606,
                "high_24h": 1389.0235,
                "open_24h": 1361.4493,
                "change_24h": 23.4798,
                "change_24h_pct": 1.72461802,
                "base_volume_24h": 299.89813423,
                "quote_volume_24h": 415337.65
            },
            {
                "ask": 3.4891,
                "bid": 3.4827,
                "base": "ADA",
                "last":
…