v1

latestOpenAPI 3.1.02026-08-0411022.6 KB

List Tokens with Malicious Pairs

Get the tokens (excluding the quote token such as ETH, BNB, etc) for trading pairs which have been rugpulled in the last 24 hours. Available with the Enterprise plan.

get/scams/tokens

Query parameters

chain_idstring

Chain identifier

limitinteger

Maximum number of results. Defaults to 100 with a maximum of 5000.

offsetinteger

Number of results to skip. Defaults to 0.

start_timestring

Restrict results to tokens created after this time

end_timestring

Restrict results to tokens created before this time

Headers

X-API-Keystring required

Your assigned API key

Response

200

messagestring
totalinteger

Example response

{
  "message": "OK",
  "total": 1357,
  "result": [
    {
      "address": "0x953e5cb1e053b3158166935aff287ffc7cf5984c",
      "name": "AIBRAIN",
      "symbol": "AIBRAIN",
      "chain_id": "56",
      "rugpulls": [
        {
          "category": "swap",
          "timestamp": "2025-04-04T21:06:06.000Z",
          "tx_hash": "0x3e7a79a5fe81499236f3dc8337004d68fcc5cc38cb2177ae481c0f9839ca0a08"
        }
      ]
    }
  ]
}