/v1/pool
Single liquidity pool full detail
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}