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/pumpfun-api

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

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

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

{
    "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
}