BURNIE

🔗 API Documentation & Live Data

🔗 API Information

Server Online

📊 Live Data /api/live-data

Real-time token statistics fetched directly from the Solana blockchain.

Loading...-

🪙 Token Information /api/token-info

Token metadata, supply information, and bonding curve details.

Loading...-

💰 Claim Status /api/claim-status

Fee claiming and token burning statistics.

Loading...-

🎰 PumpFun State /api/pumpfun-state

PumpFun integration details, bonding curve, and fee information.

Loading...-

📥 GET Endpoints

GET /api/live-data

Returns real-time token statistics including price, volume, holders, and market cap.

GET /api/token-info

Returns token metadata, supply, and bonding curve information.

GET /api/claim-status

Returns fee claiming and burning statistics with transaction history.

GET /api/pumpfun-state

Returns PumpFun integration state, program IDs, and wallet configuration.

📤 POST Endpoints

POST /api/trigger-claim

Triggers fee claiming from PumpFun and initiates auto buy & burn cycle.

POST /api/buy

Manually buy BURNIE tokens. Body: { "amount": 0.1 } (SOL amount)

POST /api/burn

Manually burn BURNIE tokens. Body: { "amount": 1000 } (token amount)

POST /api/full-cycle

Executes complete cycle: Claim fees → Buy tokens → Burn tokens.

🔌 WebSocket

WS 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,
    ...
  }
}

📄 Raw JSON Response

Last fetched raw response from selected endpoint.

Select an API tab and data will appear here...