Vai al contenuto
GET /v1/search

Find pools by token name, symbol or address

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/geckoterminal-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "count": 20,
        "pools": [
            {
                "dex": "uniswap_v3",
                "name": "WETH / USDC 0.05%",
                "fdv_usd": 4346939074.79,
                "network": "eth",
                "txns_24h": {
                    "buys": 3310,
                    "sells": 2703,
                    "buyers": 1081,
                    "sellers": 1177
                },
                "created_at": "2021-12-29T12:35:14Z",
                "reserve_usd": 85603348.66,
                "pool_address": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640",
                "market_cap_usd": 4348542448.13,
                "volume_24h_usd": 59563520.47,
                "base_token_address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                "quote_token_address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
                "base_token_price_usd": 1655.9963978931,
                "price_change_24h_pct": -0.947,
                "quote_token_price_usd": 1.00345068
            },
            {
                "dex": "uniswap_v3",
                "name": "WETH / USDT 0.3%",
                "fdv_usd": 4346781910.12,
                "network": "eth",
                "txns_24h": {
                    "buys": 1085,
                    "sells": 446,
                    "buyers": 237,
                    "sellers": 155
                },
                "created_at": "2021-12-29T12:36:12Z",
                "reserve_usd": 67082359.09,
                "pool_address": "0x4e68ccd3e89f51c3074ca5072bbac773960dfa36",
                "market_cap_usd": 4348385225.49,
                "volume_24h_usd": 26605719.7,
                "base_token_address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                "quote_token_address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "base_token_price_usd": 1656.0566595789,
                "price_change_24h_pct": -0.928,
                "quote_token_price_usd": 1.00293994
            },
            {
                "dex": "uniswap_v3",
                "name": "WETH / USDT 0.05%",
                "fdv_usd": 4346555826.4,
                "network": "eth",
                "txns_24h": {
                    "buys": 2760,
                    "sells": 2144,
                    "buyers": 756,
                    "sellers": 815
                },
                "created_at": "2021-12-29T12:35:27Z",
                "reserve_usd": 10346136.8,
                "pool_address": "0x11b815efb8f581194ae79006d24e0d814b7697f6",
                "market_cap_usd": 4348159058.38,
                "volume_24h_usd": 29040120.45,
                "base_token_address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                "quote_token_address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "base_token_price_usd": 1655.9963978931,
                "price_change_24h_pct": -0.956,
                "quote_token_price_usd": 1.00301649
            },
            {
              
…