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.
Parameter In Type Required Description networkpath string Yes Network ID (see Supported Networks ) token_addresspath string Yes Token contract address
Bash
curl -H "X-API-Key: YOUR_API_KEY" \
https://api.insightx.network/dex-metrics/v1/sol/pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn/bundlers
JSON
{
"total_bundlers_pct": 12.5,
"bundlers": [
{
"address": "5Yqw3pMxstwjHDmPAQaWcKpVvehemtERaSGePRshDXtX",
"balance": 16308044.14,
"percentage": 1.63,
"reasons": ["multi-wallet swap in single tx"],
"slot": 310500012
}
]
}
Field Type Description total_bundlers_pctnumber Total percentage of supply held by all detected bundlers bundlersarray Individual bundler entries, sorted by percentage descending
Field Type Description addressstring Wallet address balancenumber Current token balance (in token units) percentagenumber Percentage of total supply held reasonsarray or null Detection reasons explaining why this wallet was flagged slotinteger or null Block when the bundling activity was detected
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 Status Solana (sol) Supported Sui (sui) Supported All other networks Not supported (returns 422)