/v1/ticker
Ticker for one spot market
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/cryptocom-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptocom-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptocom-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/cryptocom-api/v1/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"ask": 62664.47,
"bid": 62664.46,
"base": "BTC",
"last": 62664.46,
"quote": "USD",
"market": "BTC_USD",
"source": "Crypto.com",
"spread": 0.01,
"low_24h": 60699.31,
"high_24h": 62958.85,
"timestamp": 1781164166049,
"volume_24h": 6940.1596,
"change_24h_pct": 1.62,
"volume_quote_24h": 429083230.82
},
"meta": {
"timestamp": "2026-06-11T07:49:26.859Z",
"request_id": "1a1e421e-3a5f-4840-b359-d170302d1d29"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}