Aller au contenu
GET /v1/tickers

All pairs for a quote ranked by 24h 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/btcturk-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/btcturk-api/v1/tickers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/btcturk-api/v1/tickers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/btcturk-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/btcturk-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,
        "quote": "TRY",
        "source": "BTCTurk",
        "tickers": [
            {
                "ask": 46.127,
                "bid": 46.12,
                "base": "USDT",
                "last": 46.12,
                "pair": "USDTTRY",
                "quote": "TRY",
                "spread": 0.007,
                "average": 46.123,
                "low_24h": 46.084,
                "high_24h": 46.143,
                "open_24h": 46.11,
                "timestamp": 1781164170331,
                "change_24h": 0.017,
                "volume_24h": 4400367.98,
                "change_24h_pct": 0.02,
                "quote_volume_24h_approx": 202944971.24
            },
            {
                "ask": 8.469,
                "bid": 8.4503,
                "base": "H",
                "last": 8.469,
                "pair": "HTRY",
                "quote": "TRY",
                "spread": 0.0187,
                "average": 8.7162,
                "low_24h": 7.8,
                "high_24h": 9.6199,
                "open_24h": 8.965,
                "timestamp": 1781164170503,
                "change_24h": -0.496,
                "volume_24h": 22178592.6,
                "change_24h_pct": -5.53,
                "quote_volume_24h_approx": 187830500.73
            },
            {
                "ask": 0.7381,
                "bid": 0.7364,
                "base": "SAHARA",
                "last": 0.7376,
                "pair": "SAHARATRY",
                "quote": "TRY",
                "spread": 0.0017,
                "average": 0.7824,
                "low_24h": 0.7149,
                "high_24h": 0.8672,
                "open_24h": 0.8626,
                "timestamp": 1781164170335,
                "change_24h": -0.1245,
                "volume_24h": 207407228.7,
                "change_24h_pct": -14.49,
                "quote_volume_24h_approx": 152983571.89
            },
            {
                "ask": 23.459,
                "bid": 23.395,
                "base": "WLD",
                "last": 23.395,
                "pair": "WLDTRY",
                "quote": "TRY",
                "spread": 0.064,
                "average": 21.568,
                "low_24h": 19.801,
                "high_24h": 24.189,
                "open_24h": 23.245,
                "timestamp": 1781164170342,
                "change_24h": 0.214,
                "volume_24h": 5639209,
                "change_24h_pct": 0.65,
                "quote_volume_24h_approx": 131929294.56
            },
            {
                "ask": 7.884,
                "bid": 7.867,
                "base": "IO",
                "last": 7.867,
                "pair": "IOTRY",
                "quote": "TRY",
                "spread": 0.017,
                "average": 8.02,
                "low_24h": 7.526,
                "high_24h": 8.49,
                "open_24h": 7.884,
                "timestamp": 1781164170331,
                "ch
…