/v1/pool
One Whirlpool in full by address
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}