Aller au contenu
GET /v1/tickers

All books ranked by approximate 24h quote volume

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/bitso-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "count": 50,
        "source": "Bitso",
        "tickers": [
            {
                "ask": 1493.37,
                "bid": 1492.5,
                "low": 1489.48,
                "base": "usdt",
                "book": "usdt_ars",
                "high": 1514.09,
                "last": 1492.5,
                "vwap": 1500.3204040712,
                "quote": "ars",
                "spread": 0.87,
                "change_24h": -15.64,
                "created_at": "2026-06-10T22:56:27+00:00",
                "volume_24h": 790937.2569374,
                "quote_volume_24h_approx": 1180473855.98
            },
            {
                "ask": 1494.52,
                "bid": 1493.07,
                "low": 1490.44,
                "base": "usd",
                "book": "usd_ars",
                "high": 1515,
                "last": 1493.16,
                "vwap": 1503.3975980313,
                "quote": "ars",
                "spread": 1.45,
                "change_24h": -17.12,
                "created_at": "2026-06-10T22:56:27+00:00",
                "volume_24h": 781869.33114149,
                "quote_volume_24h_approx": 1167456010.49
            },
            {
                "ask": 3559.8,
                "bid": 3541.9,
                "low": 3536.6,
                "base": "usd",
                "book": "usd_cop",
                "high": 3647.6,
                "last": 3545.4,
                "vwap": 3564.4765036746,
                "quote": "cop",
                "spread": 17.9,
                "change_24h": -41.5,
                "created_at": "2026-06-10T22:56:27+00:00",
                "volume_24h": 77285.93102182,
                "quote_volume_24h_approx": 274009539.84
            },
            {
                "ask": 3559.5,
                "bid": 3543.7,
                "low": 3509.3,
                "base": "usdt",
                "book": "usdt_cop",
                "high": 3598,
                "last": 3560.4,
                "vwap": 3567.5315595434,
                "quote": "cop",
                "spread": 15.8,
                "change_24h": -23.6,
                "created_at": "2026-06-10T22:56:27+00:00",
                "volume_24h": 51981.0730056,
                "quote_volume_24h_approx": 185073412.33
            },
            {
                "ask": 17.432,
                "bid": 17.431,
                "low": 17.348,
                "base": "usd",
                "book": "usd_mxn",
                "high": 17.48,
                "last": 17.432,
                "vwap": 17.3924370383,
                "quote": "mxn",
                "spread": 0.001,
                "change_24h": -0.023,
                "created_at": "2026-06-10T22:56:27+00:00",
                "volume_24h": 8803175.15022973,
                "quote_volume_24h_approx": 153456949.22
            },
            {
                "ask": 19.1204,
                "bid": 19.0969,
                "low": 18.9746,
                "b
…