Live on Solana

Blip Analytics API โ€” market data for meme-coin traders

Real-time holders, prices, whales, fresh launches, rug scores and trending feeds. One fast JSON API built for bots, dashboards and feeds.

10REST endpoints
~120msmedian latency
24/7Solana feed
JSONeverywhere

Top Holders

Top 10 holders, distribution and supply concentration per mint.

GET /api/holders

Price

Live USD / SOL price, 1h and 24h moves, volume and mcap.

GET /api/price

Whales

Big-wallet flows, net movement and recent activity.

GET /api/whales

Fresh Tokens

Newly detected launches with liquidity, age and holder counts.

GET /api/fresh

Rug Scores

Heuristic risk score 0-100 with risk flags and lock stats.

GET /api/rugcheck

Trending

Ranked buys, sells, txns and volume over the last hour.

GET /api/trending

Wallet PnL

Win rate, trades, realized returns and avg hold time.

GET /api/wallet-pnl

Liquidity

Pool depth, burn / lock stats, reserves and pool age.

GET /api/liq

Social

Follow graph, tracked lists and alert counts per profile.

GET /api/follows

Feed Stats

Global throughput: online clients, swaps, new tokens, volume.

GET /api/feed-stats

Getting started

No 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); });

Endpoints

Fast, cacheable GET routes. See /docs for params and sample responses.

MethodPathWhat it does
GET/api/price?mint=XXXToken price snapshot
GET/api/holders?mint=XXXTop holders and distribution
GET/api/whales?chain=solWhale flows
GET/api/fresh?limit=10Fresh tokens
GET/api/rugcheck?mint=XXXRug risk score
GET/api/trending?chain=solTrending now
GET/api/wallet-pnl?wallet=XXXTrader performance
GET/api/liq?mint=XXXLiquidity snapshot
GET/api/follows?user=XXXSocial graph
GET/api/feed-statsGlobal feed stats