/v1/ticker
Pair 24h stats incl. fees
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}