Skip to content
GET /v1/pool

One Whirlpool in full by address

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/orca-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "dex": "Orca",
        "pair": "SOL/USDC",
        "chain": "Solana",
        "price": 127.49637274179749,
        "source": "Orca",
        "address": "Czfq3xZZDmsdGdUyrNLtRhGc47cXcZtLG4crryfu44zE",
        "fee_pct": 0.04,
        "token_a": "SOL",
        "token_b": "USDC",
        "tvl_usd": 32526289.16,
        "apr_day_pct": 59.33,
        "apr_week_pct": 45.77,
        "tick_spacing": 4,
        "token_a_mint": "So11111111111111111111111111111111111111112",
        "token_b_mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
        "apr_month_pct": 95.06,
        "volume_7d_usd": 1500042571.68,
        "volume_24h_usd": 230667978.94,
        "volume_30d_usd": 12409384514.68,
        "fee_apr_day_pct": 59.33,
        "protocol_fee_pct": 13
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:21.929Z",
        "request_id": "5ef1e14d-5d58-4531-9778-d8fc80754ff9"
    },
    "status": "ok",
    "message": "Pool retrieved successfully",
    "success": true
}