/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/buda-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/buda-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/buda-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/buda-api/v1/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"ask": 57763218.9,
"bid": 57178188,
"base": "BTC",
"last": 57800879.6,
"quote": "CLP",
"market": "BTC-CLP",
"source": "Buda",
"spread": 585030.9,
"change_7d_pct": 0.3,
"change_24h_pct": 1.9,
"base_volume_24h": 3.34626687,
"quote_volume_24h": 189955850.92
},
"meta": {
"timestamp": "2026-06-11T07:48:25.850Z",
"request_id": "d44239f0-d99c-4b61-9111-64ce68006c8e"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}