/v1/pool
One pool's full state by id
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/raydium-api/v1/pool" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/raydium-api/v1/pool", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/raydium-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/raydium-api/v1/pool",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"id": "iM3qCD3h5x83bwdRVrWC1SV7mF261E9U6jsFyhCZhxi",
"pair": "SAOS-USDC",
"type": "Concentrated",
"price": 0.00082391,
"mint_a": "3eB8npQ18hPmEsAF3snBPYFSVyoTSAyTDwdEJCVpM96V",
"mint_b": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"source": "Raydium",
"tvl_usd": 60969607.69,
"fee_rate": 0.0001,
"apr_7d_pct": 0,
"apr_24h_pct": 0,
"fee_24h_usd": 0.12,
"tvl_amount_a": 73975457251.48228,
"tvl_amount_b": 20223.159732,
"price_max_24h": 0.00082409,
"price_min_24h": 0.00082383,
"volume_7d_usd": 20559.53,
"volume_24h_usd": 1209.34,
"volume_30d_usd": 20559.53
},
"meta": {
"timestamp": "2026-06-10T22:57:25.036Z",
"request_id": "8df1b2df-b1d2-4bf6-963b-8c097834e8cc"
},
"status": "ok",
"message": "Pool retrieved successfully",
"success": true
}