Aller au contenu
GET /v1/tickers

All pairs in one call

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/bitfinex-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/bitfinex-api/v1/tickers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitfinex-api/v1/tickers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitfinex-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/bitfinex-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": {
        "type": "trading",
        "count": 299,
        "source": "Bitfinex",
        "tickers": [
            {
                "last": 0.7,
                "pair": "BMN2:BTC",
                "symbol": "tBMN2:BTC",
                "volume_24h": 1.0e-6,
                "change_24h_pct": 12.9032
            },
            {
                "last": 475,
                "pair": "ZECF0:USTF0",
                "symbol": "tZECF0:USTF0",
                "volume_24h": 136.60759723,
                "change_24h_pct": 10.2088
            },
            {
                "last": 0.0073655,
                "pair": "ZECBTC",
                "symbol": "tZECBTC",
                "volume_24h": 23.33676425,
                "change_24h_pct": 9.4591
            },
            {
                "last": 464.92,
                "pair": "ZECUST",
                "symbol": "tZECUST",
                "volume_24h": 54.08195935,
                "change_24h_pct": 9.3929
            },
            {
                "last": 0.027293,
                "pair": "CHZUSD",
                "symbol": "tCHZUSD",
                "volume_24h": 4282675.02467226,
                "change_24h_pct": 7.7497
            },
            {
                "last": 461.44,
                "pair": "ZECUSD",
                "symbol": "tZECUSD",
                "volume_24h": 1484.68673912,
                "change_24h_pct": 7.2144
            },
            {
                "last": 0.026596,
                "pair": "CHZUST",
                "symbol": "tCHZUST",
                "volume_24h": 109331.42441997,
                "change_24h_pct": 6.5929
            },
            {
                "last": 0.02676,
                "pair": "CHZF0:USTF0",
                "symbol": "tCHZF0:USTF0",
                "volume_24h": 4726694.71684721,
                "change_24h_pct": 5.4914
            },
            {
                "last": 0.0051305,
                "pair": "XMRBTC",
                "symbol": "tXMRBTC",
                "volume_24h": 742.42027125,
                "change_24h_pct": 3.6988
            },
            {
                "last": 2.1933,
                "pair": "NEAR:UST",
                "symbol": "tNEAR:UST",
                "volume_24h": 8211.44023982,
                "change_24h_pct": 3.6874
            },
            {
                "last": 0.0089,
                "pair": "PNKUSD",
                "symbol": "tPNKUSD",
                "volume_24h": 24188826.49533758,
                "change_24h_pct": 3.2483
            },
            {
                "last": 0.37422,
                "pair": "ONDOF0:USTF0",
                "symbol": "tONDOF0:USTF0",
                "volume_24h": 11835.79528153,
                "change_24h_pct": 2.1399
            },
            {
                "last": 2.68e-6,
                "pair": "ADABTC",
                "symbol": "tADABTC",
                "volume_24h": 71308.82409898,
                "change_24h_pct": 1.9011
            },

…