/honeypot (by Token)

Quick Intel Security API /honeypot/{chain}/{tokenAddress} provides honeypot and taxes information for a given token on a specified chain.

Get Honeypot by Token

get

Returns the honeypot/taxes information for a given token on a specified chain.

Authorizations
Path parameters
chainstringRequired

The ID of the chain where the contract resides. For a list of supported chains and their IDs, please visit https://docs.quickintel.io/developers/api-supported-chains

Example: arbitrum
tokenAddressstringRequired

The contract address to be audited.

Example: 0x6d038130b9b379a373b1d33a29d5904ed1bb9026
Responses
200
Successful request and response.
application/json
get
GET /v1/honeypot/{chain}/{tokenAddress} HTTP/1.1
Host: api.quickintel.io
X-QKNTL-KEY: YOUR_API_KEY
Accept: */*
{
  "tokenDetails": {
    "tokenName": "Sample Token",
    "tokenSymbol": "SMPLTKN",
    "tokenDecimals": "18",
    "tokenOwner": "0x54aaa2e0c296008e992897979078f66ddf876b86",
    "tokenSupply": "1000000000000.0001"
  },
  "tokenDynamicDetails": {
    "lastUpdatedTimestamp": "1695535853281",
    "is_Honeypot": false,
    "buy_Tax": "5.0",
    "sell_Tax": "5.0",
    "transfer_Tax": "0.0",
    "max_Transaction": null,
    "max_Wallet": "30000000000.000004",
    "max_Wallet_Percent": "3.0",
    "token_Supply_Burned": 25234632.1256,
    "lp_Pair": "0x6C01242B5e039Ab0CD20d7E7e249920FE03c3cfB",
    "lp_Supply": 1380249.76881954,
    "lp_Burned_Percent": "0.00",
    "lp_Locks": {
      "pinksale": null,
      "onlymoons": {
        "lockDate": "1676137399000",
        "amount": 1316304.79392186,
        "unlockDate": "1707634800000",
        "lockID": "332",
        "owner": "0x54aAa2e0C296008E992897979078f66Ddf876b86",
        "percentageLocked": "95"
      },
      "dxsale": null
    },
    "price_Impact": "0.1",
    "problem": false,
    "extra": null
  }
}

Last updated