Zum Inhalt springen
GET /v1/ticker

Pair 24h stats incl. fees

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/kucoin-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "ask": 62039.6,
        "bid": 62039.5,
        "last": 62036.2,
        "time": "2026-06-10T14:02:22.784Z",
        "source": "KuCoin",
        "symbol": "BTC-USDT",
        "low_24h": 60727.3,
        "high_24h": 62445,
        "maker_fee": 0.001,
        "taker_fee": 0.001,
        "volume_24h": 3728.012653258377,
        "average_price": 62735.50948483,
        "change_price_24h": -342.9,
        "quote_volume_24h": 229315910.89662957,
        "change_rate_24h_pct": -0.54
    },
    "meta": {
        "timestamp": "2026-06-10T14:02:23.166Z",
        "request_id": "8e03eae1-e647-455c-b9b9-fcf641a91289"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}