Zum Inhalt springen
GET /v1/ticker

Ticker for one market

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "ask": 62731.06,
        "bid": 62730.92,
        "base": "BTC",
        "last": 62717.24,
        "quote": "USDT",
        "market": "BTC_USDT",
        "source": "CoinW",
        "spread": 0.14,
        "low_24h": 60800.07,
        "high_24h": 62996.85,
        "change_24h_pct": 1.65,
        "base_volume_24h": 10470.76915454,
        "quote_volume_24h": 656697742.05
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:48.631Z",
        "request_id": "90cf318d-d03d-4a5d-b381-20e835b439e8"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}