Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/geckoterminal-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "source": "GeckoTerminal API (api.geckoterminal.com, live)",
        "service": "geckoterminal-api",
        "endpoints": {
            "GET /v1/new": "Most recently created pools on a network (network=eth).",
            "GET /v1/meta": "This document.",
            "GET /v1/pool": "One pool's live price, liquidity, volume and transactions (network=eth, address=0x...).",
            "GET /v1/search": "Find pools by token name, symbol or address (q=WETH, optional network=eth).",
            "GET /v1/networks": "Every supported blockchain network (page=1).",
            "GET /v1/trending": "Trending liquidity pools on a network (network=eth)."
        },
        "description": "Live on-chain DEX pool discovery from GeckoTerminal (CoinGecko's on-chain data product), via its public API. The networks endpoint lists every supported blockchain network; the trending endpoint returns the trending liquidity pools on a network right now; the new endpoint returns the most recently created pools on a network; the pool endpoint returns one pool's live base/quote USD price, liquidity, 24h volume, price change and buy/sell transaction counts; the search endpoint finds pools by token name, symbol or address. Live, no key, nothing stored. Distinct from DEX volume-ranking feeds and from token/pair lookup APIs — this is per-network pool discovery (what's trending, what just launched) with live pool economics.",
        "upstream_status": null,
        "sample_network_count": null
    },
    "meta": {
        "timestamp": "2026-06-10T13:59:36.099Z",
        "request_id": "91cab9a9-8ec4-4f8a-adcd-45f621858112"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}