/v1/market
Live DEX market metrics in HIVE
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/hiveengine-api/v1/market" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hiveengine-api/v1/market", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hiveengine-api/v1/market");
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/hiveengine-api/v1/market",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"quote": "HIVE",
"source": "Hive-Engine",
"symbol": "LEO",
"last_price": 0.20699902,
"lowest_ask": 0.20699907,
"highest_bid": 0.18032177,
"last_day_price": 0.18031267,
"volume_24h_hive": 5.81429449,
"price_change_hive": 0.02668635,
"price_change_percent": "14.80%"
},
"meta": {
"timestamp": "2026-06-11T16:46:59.364Z",
"request_id": "8a04848b-1478-46a3-870f-fb6c9ad8c6bf"
},
"status": "ok",
"message": "Market retrieved successfully",
"success": true
}