Token Holders

Realtime notifications of holder count change for a token

Basic
Premium
Enterprise
Credit Cost

0


Subscribe / Unsubscribe

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

Incoming message structure

{
    "type": "stream_data",
    "stream": "token-holders",
    "data": {
        "mint": "82cwn8QamJCNGkrP43CW3HVgK4qziBt2Bk8NugxZpump",
        "holders": 232
    },
    "timestamp": 1749860242493
}

Last updated