/v1/pools
Pools on a chain/registry with TVL, coins, amp and gauge APY
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/pools" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/curve-api/v1/pools", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/curve-api/v1/pools");
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/pools",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"chain": "ethereum",
"count": 49,
"pools": [
{
"id": "0",
"name": "Curve.fi DAI/USDC/USDT",
"coins": [
{
"symbol": "DAI",
"usd_price": 1.000047
},
{
"symbol": "USDC",
"usd_price": 1
},
{
"symbol": "USDT",
"usd_price": 0.999329
}
],
"symbol": "3Crv",
"address": "0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7",
"tvl_usd": 160718478.86,
"is_broken": false,
"asset_type": "usd",
"is_meta_pool": false,
"amplification": 4000,
"gauge_crv_apy": {
"max": 0.0001,
"min": 0
},
"virtual_price": "1039823717242480120"
},
{
"id": "14",
"name": "Curve.fi ETH/stETH",
"coins": [
{
"symbol": "ETH",
"usd_price": 1613.851717
},
{
"symbol": "stETH",
"usd_price": 1614.510185
}
],
"symbol": "steCRV",
"address": "0xDC24316b9AE028F1497c275EB9192a3Ea0f67022",
"tvl_usd": 66594300.69,
"is_broken": false,
"asset_type": "eth",
"is_meta_pool": false,
"amplification": 900,
"gauge_crv_apy": {
"max": 0,
"min": 0
},
"virtual_price": "1138908303762572313"
},
{
"id": "33",
"name": "Curve.fi Factory USD Metapool: Liquity",
"coins": [
{
"symbol": "LUSD",
"usd_price": 1.006206
},
{
"symbol": "3Crv",
"usd_price": 1.039634
}
],
"symbol": null,
"address": "0xEd279fDD11cA84bEef15AF5D39BB4d4bEE23F0cA",
"tvl_usd": 11904610.98,
"is_broken": false,
"asset_type": "usd",
"is_meta_pool": true,
"amplification": 500,
"gauge_crv_apy": {
"max": 0.0037,
"min": 0.0015
},
"virtual_price": "1041603088998109437"
},
{
"id": "40",
"name": "Curve.fi Factory USD Metapool: Magic Inte
…