Skip to main content
GET
/
tokens
/
{mint}
/
rugs
Rug history for one mint
curl --request GET \
  --url https://api.dexploit.dev/tokens/{mint}/rugs \
  --header 'X-API-Key: <api-key>'
{
  "mint": "<string>",
  "rugs": [
    {
      "token_mint": "<string>",
      "pool_address": "<string>",
      "dex": "<string>",
      "drained_pct": 123,
      "lp_sol_pulled": 123,
      "signature": "<string>",
      "slot": 123,
      "ts_ms": 123
    }
  ],
  "count": 123,
  "computed_at": 123
}

Authorizations

X-API-Key
string
header
required

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

Path Parameters

mint
string
required

Token mint (base58). A malformed mint returns 400.

Query Parameters

limit
integer
default:50

Page size (clamped 1..500).

Required range: 1 <= x <= 500

Response

Rug history for the mint

mint
string

The mint echoed back from the path.

rugs
object[]
count
integer

Full match total (count() OVER ()), independent of limit/offset.

computed_at
integer

Epoch milliseconds.