Ir al contenido
GET /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.

Encabezados personalizados (opcional)
api.oanor.com/pumpfun-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/pumpfun-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pumpfun-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pumpfun-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/pumpfun-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": "newest, top and live take limit (1-100, default 30). coin takes mint (a Solana mint address, required). meta takes no parameters. market_cap_usd is in US dollars; graduated=true means the token has migrated off the bonding curve to a DEX. NSFW tokens are excluded from the lists. A short ~30-second protective cache fronts the upstream.",
        "source": "Pump.fun public web API (frontend-api-v3.pump.fun), keyless, live",
        "service": "pumpfun-api",
        "endpoints": {
            "GET /v1/top": "Top Pump.fun tokens by market cap (limit 1-100).",
            "GET /v1/coin": "One token's full profile by mint (mint=...).",
            "GET /v1/live": "Tokens livestreaming right now, ranked by viewers (limit 1-100).",
            "GET /v1/meta": "This document.",
            "GET /v1/newest": "The launch firehose — most recently minted tokens (limit 1-100)."
        },
        "sample_top": {
            "symbol": "Fartcoin ",
            "graduated": true,
            "market_cap_usd": 117543127
        },
        "description": "The Pump.fun memecoin launchpad firehose — the dominant Solana token-launch platform — live, no key. Anyone can mint a token in seconds; it trades on a bonding curve and graduates to a DEX once it reaches the graduation market cap. It exposes the newest launches (the firehose), the top tokens by market cap (the winners), the tokens livestreaming right now (ranked by viewers), and any token's full profile by mint. The launchpad / bonding-curve cut — distinct from the DEX-pair screeners (established pairs, not the launchpad), the CEX price/market-cap feeds, and the DeFi-TVL feeds.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T19:36:12.319Z",
        "request_id": "4dc49fd9-7f5a-4ebc-a10a-602f8733d54d"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}