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.

No API key required

Endpoints

GET /api/public/tokens/newNewest public launches
GET /api/public/tokens/trendingTrending market board
GET /api/public/tokens/graduatingCoins closest to graduation
GET /api/public/token/{address}Token metadata and public stats
GET /api/public/trades/recentRecent public trades
GET /api/public/token/{address}/tradesTrades for one coin
GET /api/public/events?since_id=0Unified stream for bots

Event 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-graduations

Rules 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.

الرئيسية إنشاء