Bundlers Breakdown

Identify wallets that execute coordinated multi-wallet swaps to accumulate tokens while appearing as separate buyers.

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

Identifies wallets that execute coordinated multi-wallet swaps within a single transaction or very tight block window to accumulate tokens while appearing as separate buyers. Bundlers are common in token launches.

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/bundlers

Response

{
  "total_bundlers_pct": 12.5,
  "bundlers": [
    {
      "address": "5Yqw3pMxstwjHDmPAQaWcKpVvehemtERaSGePRshDXtX",
      "balance": 16308044.14,
      "percentage": 1.63,
      "reasons": ["multi-wallet swap in single tx"],
      "slot": 310500012
    }
  ]
}

Fields

Top Level

FieldTypeDescription
total_bundlers_pctnumberTotal percentage of supply held by all detected bundlers
bundlersarrayIndividual bundler entries, sorted by percentage descending

Bundler Entry

FieldTypeDescription
addressstringWallet address
balancenumberCurrent token balance (in token units)
percentagenumberPercentage of total supply held
reasonsarray or nullDetection reasons explaining why this wallet was flagged
slotinteger or nullBlock when the bundling activity was detected

Use Cases

  • Launch analysis -- determine how much supply was accumulated through coordinated bundling at token launch.
  • Detecting coordinated accumulation -- identify wallets that use multiple addresses to disguise concentrated buying.
  • Risk assessment -- tokens with high bundler concentration may indicate coordinated accumulation before a potential dump.

Network Support

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