Messages
{
"type": "join",
"room": "insider:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"
}{
"type": "leave",
"room": "insider:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"
}{
"type": "joined",
"room": "insider:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"
}{
"type": "message",
"room": "insider:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
"data": {
"wallet": "WalletAddressHere",
"amount": "5000000000",
"tokenAmount": 5000000,
"percentage": 0.75,
"previousAmount": 4000000,
"previousPercentage": 0.6,
"totalSniperPercentage": 5.25,
"totalInsiderPercentage": 12.5
}
}Websockets
Insider tracking
Stream Solana insider wallet balance and percentage changes for a token over Datastream WebSocket to detect dev and team holding shifts live.
WSS
/
SDK Example
import { Datastream } from '@solana-tracker/data-api';
const dataStream = new Datastream({
wsUrl: 'wss://datastream.solanatracker.io/YOUR_API_KEY',
});
await dataStream.connect();
const sub = dataStream.subscribe.insiders('6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN').on((data) => {
console.log(data);
});
// sub.unsubscribe();
Messages
{
"type": "join",
"room": "insider:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"
}{
"type": "leave",
"room": "insider:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"
}{
"type": "joined",
"room": "insider:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"
}{
"type": "message",
"room": "insider:6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
"data": {
"wallet": "WalletAddressHere",
"amount": "5000000000",
"tokenAmount": 5000000,
"percentage": 0.75,
"previousAmount": 4000000,
"previousPercentage": 0.6,
"totalSniperPercentage": 5.25,
"totalInsiderPercentage": 12.5
}
}apiKey
type:httpApiKey
API key for authentication. Include your Datastream key in the connection URL: wss://datastream.solanatracker.io/{DATASTREAM_KEY}
joinInsider
type:object
Subscribe to insider wallet activity
leaveInsider
type:object
Unsubscribe from insider tracking
insiderJoined
type:object
Insider subscription confirmed
insiderMessage
type:object
Insider activity notification
Was this page helpful?
⌘I