/v1/pool
One pool's full depth and pricing
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/thorchain-api/v1/pool" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/thorchain-api/v1/pool", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/thorchain-api/v1/pool");
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/thorchain-api/v1/pool",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"asset": "BTC.BTC",
"source": "THORChain",
"status": "Available",
"lp_units": 1970972.55490454,
"pool_units": 101981355696984850,
"balance_rune": 24204669.77941806,
"savers_depth": 516.13139211,
"synth_supply": 517.41641679,
"balance_asset": 173.2777546,
"asset_price_usd": 81806.551099,
"asset_price_rune": 139687.11584065,
"settlement_asset": "RUNE",
"pending_inbound_rune": 0,
"pending_inbound_asset": 1.56079849
},
"meta": {
"timestamp": "2026-06-10T13:59:42.861Z",
"request_id": "53bf8b57-1db0-4c9e-9c37-a064ebc0af9c"
},
"status": "ok",
"message": "Pool retrieved successfully",
"success": true
}