Iniciar live
Choose one of your coins to go live.
Loading your coins…
Carteira
Anonymous creator
Wallet pending
Moedas em alta
Pesquisas recentes
Vistas recentemente
Resultados da busca
↵ abrir token
esc esc fecha
⌘K buscar
Public read-only API
🤖 Public indexers & trackers API
Use the public API to index new meme coin launches, trending coins, recent trades, big buys, graduation progress and public event feeds. These endpoints are read-only and do not expose private wallet or creator revenue data.
For bot builders
Poll /api/public/events?since_id=... every few seconds and store next_since_id. Use RSS feeds for simpler Telegram, Discord, X or website alert bots.
Endpoints
GET /api/public/tokens/newNewest public launchesGET /api/public/tokens/trendingTrending market boardGET /api/public/tokens/graduatingCoins closest to graduationGET /api/public/token/{address}Token metadata and public statsGET /api/public/trades/recentRecent public tradesGET /api/public/token/{address}/tradesTrades for one coinGET /api/public/events?since_id=0Unified stream for botsEvent types
new_launch
trade_buy
trade_sell
big_buy
graduating
progress_25
progress_50
progress_75
progress_90
graduated
live_started
More event types can be added without breaking existing bots. Always ignore unknown event types safely.
Events example
curl -sS "https://launchpad.meme/api/public/events?since_id=0&limit=50"
{
"ok": true,
"events": [
{
"id": 1779327000000001,
"type": "new_launch",
"chain": "bsc",
"symbol": "$MEME",
"token": "0x...",
"url": "https://launchpad.meme/coin/0x..."
}
],
"next_since_id": 1779327000000001
}
RSS feeds
/feed/new-launches.xmlNewest coins/feed/big-buys.xmlLarge buys/feed/graduations.xmlGraduations / near-graduationsRules for indexers
Cache responses for 5–15 seconds. Do not scrape private routes or wallet endpoints. Do not assume every token is on the same chain, always read the chain field.