/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}