/v1/ticker
Ticker for one 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/exmo-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/exmo-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/exmo-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/exmo-api/v1/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"ask": 3031415.06,
"bid": 2899486.43,
"base": "BTC",
"last": 2967598.54,
"quote": "UAH",
"market": "BTC_UAH",
"source": "EXMO",
"spread": 131928.63,
"avg_24h": 2973721.11992117,
"low_24h": 2899486.42,
"high_24h": 3044000,
"base_volume_24h": 117.7022324,
"quote_volume_24h": 349292973.05
},
"meta": {
"timestamp": "2026-06-11T07:45:05.294Z",
"request_id": "8622fbde-caa6-4ed9-a449-b7ed037da713"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}