Skip to main content
GET
/
tokens
/
{mint}
/
intel
Token intel — dashboard summary
curl --request GET \
  --url https://api.dexploit.dev/tokens/{mint}/intel \
  --header 'X-API-Key: <api-key>'
{
  "mint": "<string>",
  "computed_at": 123,
  "holders_count": 123,
  "creator_held_pct": 123,
  "bonding_pct": 123,
  "top10_pct": {
    "value": 123,
    "computed_at": 123
  },
  "actors": {},
  "dev": {},
  "change_pct": {
    "5m": 123,
    "1h": 123,
    "6h": 123,
    "24h": 123
  },
  "liquidity_usd": 123,
  "volume_24h_usd": 123,
  "volume_pct_change_24h": 123,
  "dev_held_lp_pct": 123,
  "risk": {
    "score": 123,
    "signals_summary": [
      "<string>"
    ],
    "fetch_url": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

Preferred for swaps-api endpoints (/swaps/*, /stats/*, /trending, /pool-events).

Path Parameters

mint
string
required

Response

200 - application/json

Token intel

Aggregated intelligence for one token mint: actor aggregates, holders, price/volume trend, dev concentration, and an embedded Risk Score summary. Cached server-side ~60s.

Full per-actor lists live at dedicated endpoints (e.g. /tokens/{mint}/snipers); the actors object here carries counts + concentration percentages with fetch_url deep-links.

mint
string
computed_at
integer

Unix epoch milliseconds.

holders_count
integer | null

Distinct wallets currently holding non-zero balance.

creator_held_pct
number | null

Percent of supply still held by the creator wallet (0–100).

bonding_pct
number | null

Pump.fun bonding-curve progress (0–100); null for graduated/non-pump tokens.

top10_pct
object

Top 10 holders' share of supply, with explicit status. Always present (even when the value isn't computable yet).

actors
object

Per-tag count + concentration of wallets currently holding the mint. Keys are tag names (sniper, insider, smart_money, whale, kol, fresh, dev, bot) — only tags with at least one matching holder appear. Use fetch_url to deep-link to the full list endpoint.

dev
object

Creator wallet, source provenance, and recent launches. null when the creator is unknown (Phase 0 strict precedence — never falls back to largest holder).

change_pct
object

Price change percent across canonical windows.

liquidity_usd
number | null
volume_24h_usd
number | null
volume_pct_change_24h
number | null
dev_held_lp_pct
number | null

Percent of LP tokens still held by the creator (when LP is not burnt).

risk
object

Slim Risk Score summary embedded in /intel. Full per-signal breakdown at /tokens/{mint}/risk.