Zum Inhalt springen
GET /v1/tickers

All 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/poloniex-api

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/poloniex-api/v1/tickers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/poloniex-api/v1/tickers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/poloniex-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/poloniex-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": "Poloniex",
        "tickers": [
            {
                "ask": 62765,
                "bid": 62747.74,
                "base": "BTC",
                "last": 62744.2,
                "quote": "USDT",
                "market": "BTC_USDT",
                "spread": 17.26,
                "low_24h": 60750.41,
                "high_24h": 63016.91,
                "open_24h": 61690.89,
                "timestamp": 1781164140798,
                "mark_price": 62728.22,
                "trade_count": 239876,
                "change_24h_pct": 1.71,
                "base_volume_24h": 4724.30371,
                "quote_volume_24h": 292733593.08
            },
            {
                "ask": 1654.54,
                "bid": 1654.53,
                "base": "ETH",
                "last": 1654.01,
                "quote": "USDT",
                "market": "ETH_USDT",
                "spread": 0.01,
                "low_24h": 1604.44,
                "high_24h": 1666.22,
                "open_24h": 1640.26,
                "timestamp": 1781164156845,
                "mark_price": 1654.27,
                "trade_count": 117160,
                "change_24h_pct": 0.84,
                "base_volume_24h": 79454.037733,
                "quote_volume_24h": 129915319.51
            },
            {
                "ask": 418.47,
                "bid": 414.46,
                "base": "ZEC",
                "last": 416.75,
                "quote": "USDT",
                "market": "ZEC_USDT",
                "spread": 4.01,
                "low_24h": 400.05,
                "high_24h": 441.16,
                "open_24h": 429.49,
                "timestamp": 1781164157829,
                "mark_price": 423.97,
                "trade_count": 68242,
                "change_24h_pct": -2.97,
                "base_volume_24h": 105806.699083,
                "quote_volume_24h": 44043186.06
            },
            {
                "ask": 65.066,
                "bid": 64.935,
                "base": "SOL",
                "last": 64.977,
                "quote": "USDT",
                "market": "SOL_USDT",
                "spread": 0.131,
                "low_24h": 62.32,
                "high_24h": 65.793,
                "open_24h": 64.638,
                "timestamp": 1781164157798,
                "mark_price": 65.01,
                "trade_count": 321632,
                "change_24h_pct": 0.52,
                "base_volume_24h": 642885.231307,
                "quote_volume_24h": 41251167.38
            },
            {
                "ask": 1.1159,
                "bid": 1.1143,
                "base": "XRP",
                "last": 1.1154,
                "quote": "USDT",
                "market": "XRP_USDT",
                "spread": 0.0016,
                "low_24h": 1.0897,
                "high_24h": 1.1378,
                "open_24h": 1.1187,
                "timestamp": 
…