/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/dexpairs-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dexpairs-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dexpairs-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/dexpairs-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "DexScreener public API (live)",
"service": "dexpairs-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/pair": "One pair in full detail (chain=ethereum, address=0x… pair address).",
"GET /v1/token": "All pools a token trades in, ranked by liquidity (address=0x… or Solana mint).",
"GET /v1/search": "Search pairs by token symbol, name or address (q=WETH, limit up to 50)."
},
"description": "Live decentralised-exchange trading-pair data from DexScreener: for any token or pair across every major chain and DEX, the live price (USD and native), pool liquidity, 24h volume, FDV and market cap, price change over 5m/1h/6h/24h and buy/sell transaction counts. Search pairs by token symbol/name/address, list all pools a token trades in ranked by liquidity, or fetch one pair by chain and pair address. Live, no key, nothing stored. Distinct from aggregate DEX-volume and centralised-exchange ticker APIs — this is per-pair on-DEX data.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T11:39:50.699Z",
"request_id": "fa3d82a0-c2e2-4805-8f0d-3b8804043536"
},
"status": "ok",
"message": "Meta",
"success": true
}