/v1/pool
One pool's full state by id
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/balancer-api/v1/pool" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/balancer-api/v1/pool", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/balancer-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/balancer-api/v1/pool",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"id": "0x820b69fad931d4b4bf14e70ff234a8390f6a0658000200000000000000000547",
"name": "Gyroscope ECLP GYD/AUSDC",
"type": "GYROE",
"chain": "ARBITRUM",
"source": "Balancer",
"symbol": "ECLP-GYD-AUSDC",
"tokens": [
{
"symbol": "waUSDCn",
"address": "0x7cfadfd5645b50be87d546f42699d863648251ad",
"balance": 0.003997
},
{
"symbol": "GYD",
"address": "0xca5d8f8a8d49439357d3cf46ca2e720702f132b8",
"balance": 3078451.3239380135
}
],
"tvl_usd": 3055249.04,
"swaps_count": 6620,
"fees_24h_usd": 0,
"apr_breakdown": [],
"holders_count": 6,
"total_apr_pct": 0,
"volume_24h_usd": 0,
"protocol_version": 2
},
"meta": {
"timestamp": "2026-06-10T22:57:31.059Z",
"request_id": "6b6dec2b-7d32-4c78-a86a-73022d277786"
},
"status": "ok",
"message": "Pool retrieved successfully",
"success": true
}