Skip to main content
GET
/
tokens
/
{mint}
/
intel
Token intelligence (snipers, insiders, top holders, dev)
curl --request GET \
  --url https://api.dexploit.dev/tokens/{mint}/intel \
  --header 'X-API-Key: <api-key>'
{
  "mint": "<string>",
  "snipers": [
    {
      "wallet": "<string>",
      "balance": 123,
      "pct": 123,
      "sol_spent": 123,
      "tags": [
        "<string>"
      ]
    }
  ],
  "insiders": [
    {
      "wallet": "<string>",
      "balance": 123,
      "pct": 123,
      "sol_spent": 123,
      "tags": [
        "<string>"
      ]
    }
  ],
  "top_70": [
    {
      "wallet": "<string>",
      "balance": 123,
      "pct": 123,
      "sol_spent": 123,
      "tags": [
        "<string>"
      ]
    }
  ],
  "dev": {},
  "change_pct": {
    "5m": 123,
    "1h": 123,
    "6h": 123,
    "24h": 123
  },
  "bonding_pct": 123,
  "liquidity_usd": 123,
  "volume_24h_usd": 123,
  "volume_pct_change_24h": 123,
  "creator_held_pct": 123,
  "dev_held_lp_pct": 123,
  "holders": 123,
  "computed_at": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.dexploit.dev/llms.txt

Use this file to discover all available pages before exploring further.

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 classification, holders, price/volume trend, dev concentration. Cached server-side ~60s.

mint
string
snipers
object[]
insiders
object[]
top_70
object[]

Top 70 holders (excluding the pool LP account).

dev
object

Creator wallet's current position, or null if unknown.

change_pct
object

Price change percent across canonical windows.

bonding_pct
number | null

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

liquidity_usd
number
volume_24h_usd
number
volume_pct_change_24h
number
creator_held_pct
number

Percent of supply still held by the creator wallet.

dev_held_lp_pct
number | null

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

holders
integer
computed_at
integer

Unix epoch milliseconds.