Aller au contenu
GET /v1/tickers

24h tickers for all symbols or one symbol

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/weex-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/weex-api/v1/tickers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/weex-api/v1/tickers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/weex-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/weex-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": {
        "last": 65920.1,
        "symbol": "cmt_btcusdt",
        "low_24h": 63650.8,
        "best_ask": 65920.2,
        "best_bid": 65920.1,
        "high_24h": 65992.2,
        "timestamp": "1781522114387",
        "mark_price": 65927.3,
        "index_price": 65952.667,
        "funding_rate": null,
        "change_pct_24h": 2.156,
        "base_volume_24h": 47425.857,
        "volume_24h_usdt": 3089294540.53364
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:14.681Z",
        "request_id": "ac5f9a43-846b-461a-b1ed-4c7c31999804"
    },
    "status": "ok",
    "message": "Tickers retrieved successfully",
    "success": true
}