v1

latestOpenAPI 3.1.02026-08-0411022.6 KB

List Malicious Addresses

Get the addresses that deployed a known scam token in the last 24 hours. Available with the Enterprise plan.

get/scams

Query parameters

chain_idstring

Chain identifier

limitinteger

Maximum number of results. Defaults to 100.

offsetinteger

Number of results to skip. Defaults to 0.

start_timestring

Restrict results to tokens created/flagged before this time

end_timestring

Restrict results to tokens created/flagged after this time

deployer_addressstring

Restrict results to token contracts deployed by given address

Headers

X-API-Keystring required

Your assigned API key

Response

200

messagestring
totalinteger

Example response

{
  "message": "OK",
  "total": 123,
  "result": [
    {
      "deployer_address": "0xffedc81da4270a378980b9936d27d488f8523a28",
      "flagged_contracts_count": 1,
      "reasons": [
        "malicious contract"
      ]
    }
  ]
}