Zum Inhalt springen
GET /v1/prices

Every KuCoin pair in one call

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

Beispiel-Response

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

{
    "data": {
        "sort": "volume",
        "count": 1063,
        "prices": [
            {
                "last": 62042,
                "symbol": "BTC-USDT",
                "quote_volume_24h": 229315910.89662957,
                "change_rate_24h_pct": -0.54
            },
            {
                "last": 1649.46,
                "symbol": "ETH-USDT",
                "quote_volume_24h": 159639625.25046256,
                "change_rate_24h_pct": -1.25
            },
            {
                "last": 325.11,
                "symbol": "XMR-USDT",
                "quote_volume_24h": 51281410.10108,
                "change_rate_24h_pct": 0.79
            },
            {
                "last": 439.76,
                "symbol": "ZEC-USDT",
                "quote_volume_24h": 50394135.47209833,
                "change_rate_24h_pct": -6.5
            },
            {
                "last": 1.12719,
                "symbol": "XRP-USDT",
                "quote_volume_24h": 36184320.31058997,
                "change_rate_24h_pct": -2.74
            },
            {
                "last": 2.1294,
                "symbol": "NEAR-USDT",
                "quote_volume_24h": 34172578.1531358,
                "change_rate_24h_pct": -2.06
            },
            {
                "last": 62003.5,
                "symbol": "BTC-USDC",
                "quote_volume_24h": 32540279.65295694,
                "change_rate_24h_pct": -0.54
            },
            {
                "last": 64.88,
                "symbol": "SOL-USDT",
                "quote_volume_24h": 31107178.622663606,
                "change_rate_24h_pct": -1.63
            },
            {
                "last": 212.69,
                "symbol": "TAO-USDT",
                "quote_volume_24h": 25346227.246818,
                "change_rate_24h_pct": -1
            },
            {
                "last": 1648.37,
                "symbol": "ETH-USDC",
                "quote_volume_24h": 22766377.798878767,
                "change_rate_24h_pct": -1.27
            },
            {
                "last": 1.6805,
                "symbol": "TON-USDT",
                "quote_volume_24h": 22509009.850456357,
                "change_rate_24h_pct": -4.09
            },
            {
                "last": 1.0005,
                "symbol": "USDC-USDT",
                "quote_volume_24h": 21106851.757006302,
                "change_rate_24h_pct": 0.02
            },
            {
                "last": 62.341,
                "symbol": "AAVE-USDT",
                "quote_volume_24h": 18213411.3179168,
                "change_rate_24h_pct": -0.08
            },
            {
                "last": 0.6263,
                "symbol": "ASTER-USDT",
                "quote_volume_24h": 17132781.340776,
                "change_rate_24h_pct": 0.19
            },
            {
                "last": 0.04806,
                "symbol": "SEI-USDT",
                "quote_volume_24h": 16505260.58
…