Insiders Breakdown

Track wallets linked to the token creator and deployer.

GET /dex-metrics/v1/{network}/{token_address}/insiders

Returns wallets linked to the token creator or deployer, with their balances and percentage of total supply.

Parameters

ParameterInTypeRequiredDescription
networkpathstringYesNetwork ID (see Supported Networks)
token_addresspathstringYesToken contract address

Example Request

curl -H "X-API-Key: YOUR_API_KEY" \
  https://api.insightx.network/dex-metrics/v1/sol/pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn/insiders

Response

{
  "total_insiders_pct": 5.2,
  "insiders": [
    {
      "address": "HGvj4PKFfpe21fWYiFNGgVcSMhfGWhfPvTkiWXG87zcB",
      "balance": 52000000.0,
      "percentage": 5.2
    }
  ]
}

Fields

Top Level

FieldTypeDescription
total_insiders_pctnumberTotal percentage of supply held by all identified insiders
insidersarrayIndividual insider entries sorted by percentage descending

Insider Entry

FieldTypeDescription
addressstringWallet address
balancenumberCurrent token balance
percentagenumberPercentage of total supply held

What Insiders Are

Insiders are wallets linked to the token creator or deployer. InsightX identifies the creator address (from on-chain data or external APIs) and flags wallets associated with it. If the creator is not in the database, the system queries external sources (e.g. Solscan) to resolve the creator and track their holdings.

Use Cases

  • Track creator/team holdings -- monitor how much supply is held by the token creator and associated wallets.
  • Assess insider sell pressure risk -- evaluate potential dump risk from deployer and linked addresses.
  • Monitor deployer activity -- follow deployer wallet movements and balance changes over time.

Network Support

NetworkStatus
Solana (sol)Supported
Sui (sui)Supported
All other networksNot supported (returns 422)