Vai al contenuto
GET /v1/tickers

24h tickers for all symbols or one symbol

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/coinstore-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "ask": 65914.56,
        "bid": 65914.28,
        "low": 63651.2,
        "high": 65989.72,
        "last": 65914.53,
        "open": 64512.8,
        "symbol": "BTCUSDT",
        "ask_size": 0.003,
        "bid_size": 3.768787,
        "change_pct_24h": 2.1728,
        "base_volume_24h": 13610124.00335853,
        "quote_volume_24h": 209.260881
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:11.707Z",
        "request_id": "e9ed2a22-aace-4724-afaa-73cef39f4730"
    },
    "status": "ok",
    "message": "Tickers retrieved successfully",
    "success": true
}