Skip to content
GET /v1/pools

Boosted Curve yield pools on Convex with base and reward APY

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/convex-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/convex-api/v1/pools" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/convex-api/v1/pools", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/convex-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/convex-api/v1/pools",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "Boosted Curve yield pools on Convex, with base and reward APY.",
        "sort": "tvl",
        "chain": "Ethereum",
        "count": 25,
        "pools": [
            {
                "apy": 2.24,
                "tvl": 49739778,
                "chain": "Ethereum",
                "symbol": "FRAX-USDE",
                "pool_id": "5fac4a47-5360-49b7-8b61-66f88a3d939f",
                "apy_base": 0.02,
                "apy_reward": 2.22,
                "stablecoin": true,
                "apy_30d_avg": 1.91,
                "reward_tokens": [
                    "0xd533a949740bb3306d119cc777fa900ba034cd52",
                    "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
                ]
            },
            {
                "apy": 5.22,
                "tvl": 41405558,
                "chain": "Ethereum",
                "symbol": "DOLA-SUSDE",
                "pool_id": "85407c01-6f16-4cef-9ef2-1b2bf2556183",
                "apy_base": 0.78,
                "apy_reward": 4.44,
                "stablecoin": true,
                "apy_30d_avg": 2.98,
                "reward_tokens": [
                    "0xd533a949740bb3306d119cc777fa900ba034cd52",
                    "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
                    "0xA153B9dFE150098cFeAfb9288f3657D09fC39663"
                ]
            },
            {
                "apy": 0.02,
                "tvl": 19296855,
                "chain": "Ethereum",
                "symbol": "USDC-RLUSD",
                "pool_id": "d826a92b-2bd2-4fae-8483-db1ef8888aee",
                "apy_base": 0.02,
                "apy_reward": 0,
                "stablecoin": true,
                "apy_30d_avg": 0.33,
                "reward_tokens": [
                    "0xd533a949740bb3306d119cc777fa900ba034cd52",
                    "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b",
                    "0x75A66958919f47870f62b2780c34a235dC357586"
                ]
            },
            {
                "apy": 2.73,
                "tvl": 17375674,
                "chain": "Ethereum",
                "symbol": "CRVUSD",
                "pool_id": "027b72c2-bf96-451b-ac5f-afe6859b0828",
                "apy_base": 1.6,
                "apy_reward": 1.13,
                "stablecoin": true,
                "apy_30d_avg": 2.33,
                "reward_tokens": [
                    "0xd533a949740bb3306d119cc777fa900ba034cd52",
                    "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
                ]
            },
            {
                "apy": 5.33,
                "tvl": 12559713,
                "chain": "Ethereum",
                "symbol": "USDC-CRVUSD",
                "pool_id": "755fcec6-f4fd-4150-9184-60f099206694",
                "apy_base": 0.16,
                "apy_reward": 5.17,
                "stablecoin": true,
                "apy_30d_avg": 5.11,
                "reward_tokens": [
                    "0xd533a949740bb3306
…