/v1/pool
One pool's full detail by address
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/curve-api/v1/pool" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/curve-api/v1/pool", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/curve-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/curve-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": "0",
"name": "Curve.fi DAI/USDC/USDT",
"chain": "ethereum",
"coins": [
{
"symbol": "DAI",
"usd_price": 1.000047
},
{
"symbol": "USDC",
"usd_price": 1
},
{
"symbol": "USDT",
"usd_price": 0.999329
}
],
"source": "Curve Finance",
"symbol": "3Crv",
"address": "0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7",
"tvl_usd": 160718478.86,
"registry": "main",
"is_broken": false,
"asset_type": "usd",
"is_meta_pool": false,
"amplification": 4000,
"gauge_crv_apy": {
"max": 0.0001,
"min": 0
},
"virtual_price": "1039823717242480120"
},
"meta": {
"timestamp": "2026-06-10T22:58:16.510Z",
"request_id": "deb7eabc-f1f4-43e4-818a-60875dbe8214"
},
"status": "ok",
"message": "Pool retrieved successfully",
"success": true
}