DEX Metrics Overview

Aggregated token holder analysis in a single call.

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

Returns aggregated percentages across all DEX metric categories in a single call. This is the root path of the dex-metrics router.

Parameters

ParameterInTypeRequiredDescription
networkpathstringYesNetwork ID: sol, eth, base, bsc, sui
token_addresspathstringYesToken contract address

Example Request

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

Response

{
  "cluster_pct": 32.5,
  "snipers_pct": 8.9,
  "bundlers_pct": 4.2,
  "dev_pct": 3.1,
  "insiders_pct": 2.8,
  "top10_pct": 45.3
}

On EVM networks, snipers_pct, bundlers_pct, dev_pct, and insiders_pct will be 0.

Fields

FieldTypeDescription
cluster_pctnumberPercentage of supply held by wallets belonging to detected clusters
snipers_pctnumberPercentage of supply held by sniper wallets (0 on EVM)
bundlers_pctnumberPercentage of supply held by bundler wallets (0 on EVM)
dev_pctnumberPercentage of supply held by the token deployer/creator (0 on EVM)
insiders_pctnumberPercentage of supply held by insider wallets, excluding dev (0 on EVM)
top10_pctnumberPercentage of supply held by the top 10 holders (excluding known liquidity pools)

Use Cases

  • Dashboard summary widget -- display a compact overview of token holder distribution at a glance.
  • Quick risk assessment -- evaluate concentration and known-entity exposure without multiple API calls.
  • Comparing tokens side-by-side -- compare aggregated metrics across tokens for screening or ranking.

Network Support

NetworkStatus
Solana (sol)Supported (all fields populated)
Sui (sui)Supported (all fields populated)
Ethereum (eth)Supported (snipers/bundlers/dev/insiders = 0)
Base (base)Supported (snipers/bundlers/dev/insiders = 0)
BNB Smart Chain (bsc)Supported (snipers/bundlers/dev/insiders = 0)