/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/biconomy-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/biconomy-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/biconomy-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/biconomy-api/v1/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"base": "BTC",
"last": 62730.55,
"note": "bid/ask via /v1/book (Biconomy ticker buy/sell are unreliable)",
"quote": "USDT",
"market": "BTC_USDT",
"source": "Biconomy",
"low_24h": 60783.36,
"high_24h": 62995.99,
"change_24h_pct": 1.66,
"base_volume_24h": 9331.82331,
"quote_volume_24h": 577844521.52
},
"meta": {
"timestamp": "2026-06-11T07:48:44.110Z",
"request_id": "b5f1bc80-7c1a-49ae-9c3c-c4f85afb3250"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}