Token Price Change

Realtime notifications of transactions for a specific token

Basic
Premium
Enterprise
Credit Cost

0


Subscribe / Unsubscribe

// Subscribe 
{
  "type": "subscribe",
  "payload": {
    "stream": "price-updates",
    "parameters": {
      "token": "BuXsYHrq8L3V8taLtq7AE4xsmKT8MhCGSaLjdUoLpump"
    }
  }
}
// Unsubscribe
{
  "type": "unsubscribe",
  "payload": {
    "stream": "price-updates",
    // when no parameters are provided it will unsubscribe all token-transactions 
    // that the client is subscribed to
    "parameters": {
      "token": "BuXsYHrq8L3V8taLtq7AE4xsmKT8MhCGSaLjdUoLpump"
    }
  }
}

Incoming message structure

{
    "type": "stream_data",
    "stream": "price-updates",
    "data": {
        "price": 0.00002641374673091815,
        "price_quote": 1.8367347262365567e-7,
        "pool": "9qoxWwofjA2ePFw9y8bi2uAstnDXpWgvpPyw3dNBpump",
        "token": "9qoxWwofjA2ePFw9y8bi2uAstnDXpWgvpPyw3dNBpump",
        "time": 1749788715516
    },
    "timestamp": 1749788715531
}

Last updated