/v1/pool
One pool's live price, liquidity, volume and transactions
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/geckoterminal-api/v1/pool" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/geckoterminal-api/v1/pool", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/geckoterminal-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/geckoterminal-api/v1/pool",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"dex": "uniswap_v3",
"name": "WETH / USDC 0.05%",
"source": "GeckoTerminal",
"fdv_usd": 4347147372.31,
"network": "eth",
"txns_24h": {
"buys": 3310,
"sells": 2702,
"buyers": 1081,
"sellers": 1177
},
"created_at": "2021-12-29T12:35:14Z",
"reserve_usd": 85622201.49,
"pool_address": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640",
"market_cap_usd": 4348750822.48,
"volume_24h_usd": 59560581.16,
"base_token_address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"quote_token_address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"base_token_price_usd": 1656.2217712562,
"price_change_24h_pct": -0.942,
"quote_token_price_usd": 1.00251406
},
"meta": {
"timestamp": "2026-06-10T13:59:21.442Z",
"request_id": "5dd9f5fd-920c-43c0-93ec-95e2e3b0455b"
},
"status": "ok",
"message": "Pool retrieved successfully",
"success": true
}