/v1/market
Live DEX market metrics in HIVE
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}