Insiders Stream

Real-time insider and dev holdings events delivered over WebSocket.

Stream name: insiders

The Insiders stream delivers real-time updates on wallets linked to the token creator or deployer. This includes both the developer's own holdings and other associated insider wallets. Tracking insider concentration helps assess the risk of large dumps by parties with privileged access to the token.

This is a lightweight derived stream -- it extracts the insiders_pct and dev_pct fields from the parent dex_metrics stream. Use it when you only need insider and dev concentration data without the full holder analysis payload.

Subscribing

Single Token

{
  "op": "subscribe",
  "network": "sol",
  "address": "pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn",
  "stream": "insiders"
}

Multiple Tokens

{
  "op": "subscribe",
  "subs": [
    { "network": "sol", "address": "pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn", "stream": "insiders" },
    { "network": "sol", "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", "stream": "insiders" }
  ]
}

Event Format

{
  "op": "event",
  "network": "sol",
  "address": "pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn",
  "stream": "insiders",
  "timestamp": "2026-03-01T12:00:00.000Z",
  "data": {
    "insiders_pct": 2.8,
    "dev_pct": 3.1
  }
}

Data Reference

FieldTypeDescription
insiders_pctnumberTotal percentage of supply held by insider wallets (excluding the dev wallet)
dev_pctnumberPercentage of supply held by the token deployer/creator

Note: insiders_pct excludes the dev wallet to avoid double-counting. The combined insider + dev concentration is insiders_pct + dev_pct.

Update Frequency

Events are delivered in real time -- the moment movement happens on-chain, the event is sent.

Related

  • DEX Metrics Stream -- the parent stream that includes insiders and dev holdings alongside all other holder analysis metrics.
  • REST endpoint: GET /dex-metrics/v1/{network}/{token_address}/insiders -- on-demand insider data with individual wallet details.

Network Support

NetworkStatus
Solana (sol)Supported