/v1/meta
Service metadata
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/dexscreener-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dexscreener-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dexscreener-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/dexscreener-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "boost is DexScreener's paid-promotion unit; total_boost is cumulative. Optional chain filter (chain=solana, ethereum, base). Many tokens are unvetted — this is raw discovery, not endorsement.",
"source": "DexScreener (api.dexscreener.com, live)",
"service": "dexscreener-api",
"endpoints": {
"GET /v1/top": "Tokens with the most cumulative boost — trending / most-promoted (chain optional, limit=30).",
"GET /v1/meta": "This document.",
"GET /v1/latest": "Most recently boosted (newly promoted) tokens (chain optional).",
"GET /v1/profiles": "Newest token profiles — freshly created token pages with links (chain optional)."
},
"description": "Live discovery of newly launched and newly promoted tokens across decentralized exchanges, from DexScreener. The new-token discovery cut: not the price of a known pair, but which freshly listed tokens are appearing and which are spending on promotion right now. The top endpoint returns tokens with the most cumulative boost (trending / most-promoted); the latest endpoint returns the most recently boosted tokens; the profiles endpoint returns the newest token profiles with their description and social links. Each item carries chain, token contract, description, icon, DexScreener link and the project's links. Live, no key, nothing stored. The token-discovery / new-listings cut — distinct from the DEX trading-pair price data, market-overview and on-chain APIs.",
"boosted_tokens": 30,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:43:05.227Z",
"request_id": "1fac5806-de27-47f0-96e4-3a572dd23bd8"
},
"status": "ok",
"message": "Meta",
"success": true
}