Real-time holders, prices, whales, fresh launches, rug scores and trending feeds. One fast JSON API built for bots, dashboards and feeds.
Top 10 holders, distribution and supply concentration per mint.
GET /api/holdersLive USD / SOL price, 1h and 24h moves, volume and mcap.
GET /api/priceBig-wallet flows, net movement and recent activity.
GET /api/whalesNewly detected launches with liquidity, age and holder counts.
GET /api/freshHeuristic risk score 0-100 with risk flags and lock stats.
GET /api/rugcheckRanked buys, sells, txns and volume over the last hour.
GET /api/trendingWin rate, trades, realized returns and avg hold time.
GET /api/wallet-pnlPool depth, burn / lock stats, reserves and pool age.
GET /api/liqFollow graph, tracked lists and alert counts per profile.
GET /api/followsGlobal throughput: online clients, swaps, new tokens, volume.
GET /api/feed-statsNo key needed for public reads. Just fetch JSON:
fetch("https://api.getblip.fun/api/price?mint=YOUR_MINT")
.then(function(r){ return r.json(); })
.then(function(data){ console.log(data.price_usd, data.change_24h_pct); });
Fast, cacheable GET routes. See /docs for params and sample responses.
| Method | Path | What it does |
|---|---|---|
| GET | /api/price?mint=XXX | Token price snapshot |
| GET | /api/holders?mint=XXX | Top holders and distribution |
| GET | /api/whales?chain=sol | Whale flows |
| GET | /api/fresh?limit=10 | Fresh tokens |
| GET | /api/rugcheck?mint=XXX | Rug risk score |
| GET | /api/trending?chain=sol | Trending now |
| GET | /api/wallet-pnl?wallet=XXX | Trader performance |
| GET | /api/liq?mint=XXX | Liquidity snapshot |
| GET | /api/follows?user=XXX | Social graph |
| GET | /api/feed-stats | Global feed stats |