🔗 API Documentation & Live Data
Real-time token statistics fetched directly from the Solana blockchain.
Token metadata, supply information, and bonding curve details.
Fee claiming and token burning statistics.
PumpFun integration details, bonding curve, and fee information.
/api/live-data
Returns real-time token statistics including price, volume, holders, and market cap.
/api/token-info
Returns token metadata, supply, and bonding curve information.
/api/claim-status
Returns fee claiming and burning statistics with transaction history.
/api/pumpfun-state
Returns PumpFun integration state, program IDs, and wallet configuration.
/api/trigger-claim
Triggers fee claiming from PumpFun and initiates auto buy & burn cycle.
/api/buy
Manually buy BURNIE tokens. Body: { "amount": 0.1 } (SOL amount)
/api/burn
Manually burn BURNIE tokens. Body: { "amount": 1000 } (token amount)
/api/full-cycle
Executes complete cycle: Claim fees → Buy tokens → Burn tokens.
ws://localhost:3000
Real-time updates via WebSocket. Receives: init, update, burn, claim, auto-cycle events.
{
"type": "update",
"data": {
"volume24h": 12500.50,
"holders": 1234,
"marketCap": 500000,
"price": 0.0005,
...
}
}
Last fetched raw response from selected endpoint.
Select an API tab and data will appear here...