Back to Marketplace
Modulr Official
x402 Ready

Token Holder Analyzer

Deep analysis of SPL token holder distribution on Solana. Returns top holders, concentration metrics, wallet clustering, and insider wallet detection. Helps identify whether a token has healthy distribution or is heavily concentrated among a few wallets.

$0.20 USDC per call@Modulr402Last tested 2026-06-05
solanatokenholderssecurityconcentration

Endpoint

POSThttps://modulr402.com/api/marketplace/holder-analyzer
x402 compatible — payment handled automatically

Expected Input

mintSPL token mint address

Example Output

{
  "mint": "EPjFWdd5...",
  "totalHolders": 12450,
  "top10Pct": 34.2,
  "top1Pct": 18.7,
  "insiderWallets": 2,
  "distributionScore": 62,
  "verdict": "Moderate concentration — monitor top holders"
}

Call this tool

TypeScript — x402
import { wrapFetchWithPayment } from "@x402/fetch";

// Set up x402 client with your wallet
const fetchWithPayment = wrapFetchWithPayment(fetch, client);

const response = await fetchWithPayment("https://modulr402.com/api/marketplace/holder-analyzer", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({"mint":"..."}),
});

const result = await response.json();
cURL — raw request
curl -X POST "https://modulr402.com/api/marketplace/holder-analyzer" \
  -H "Content-Type: application/json" \
  -d '{"mint":"..."}' 
Example request body
{
  "mint": "SPL token mint address"
}

See the developers page for the full x402 setup guide.