/v1/pool
Single liquidity pool full detail
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/osmosischain-api/v1/pool" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/osmosischain-api/v1/pool", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/osmosischain-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/osmosischain-api/v1/pool",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Full detail for a single Osmosis liquidity pool — its assets with on-chain reserves, weights, swap/exit fee and total shares. Pass id (the numeric pool id, e.g. 1).",
"pool": {
"id": "1",
"type": "Pool",
"assets": [
{
"denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2",
"amount": "236184699856",
"weight": "536870912000000"
},
{
"denom": "uosmo",
"amount": "10011061539026",
"weight": "536870912000000"
}
],
"exit_fee": 0,
"swap_fee": 0.002,
"total_shares": "35489126249509848615403363"
},
"source": "Osmosis (osmosis-1) LCD"
},
"meta": {
"timestamp": "2026-06-15T02:10:32.815Z",
"request_id": "dbd2a01f-5e64-49d5-97ef-35b271141f28"
},
"status": "ok",
"message": "Pool retrieved successfully",
"success": true
}