/v1/meta
Service metadata
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}