/honeypot (by Dex & LP)

Quick Intel Security API /honeypot/{dex}/{token}/{lptoken} returns the honeypot and taxes information for a given dex + contract + LP token.

Get Honeypot by Specific DEX

get

Returns the honeypot/taxes information for a given dex + contract + LP token.

Authorizations
Path parameters
dexstringRequired

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

Example: sushiswaparb
tokenstringRequired

The contract address of the token to be audited.

Example: 0x6d038130b9b379a373b1d33a29d5904ed1bb9026
lptokenstringRequired

The liquidity pairing address for the token (or use default).

Example: default
Responses
200
Successful request and response.
application/json
get
GET /v1/honeypot/{dex}/{token}/{lptoken} HTTP/1.1
Host: api.quickintel.io
X-QKNTL-KEY: YOUR_API_KEY
Accept: */*
{
  "isHoneypot": "false",
  "buyFee": "1",
  "sellFee": "1",
  "transferFee": "0",
  "tradingCooldown": "true",
  "postCooldownFee": "1",
  "buyGas": "1",
  "sellGas": "1",
  "maxTokenTransaction": 10000000,
  "maxTokenTransactionPercent": "null",
  "maxTokenTransactionMain": 20000000,
  "maxWallet": 20000000,
  "maxWalletPercent": "2",
  "tokenName": "Sample Token",
  "tokenSymbol": "SMPLTKN",
  "tokenDecimals": "18",
  "tokenOwner": "0x0000000000000000000000000000000000000000",
  "tokenSupply": 1000000000,
  "tokenBurned": 100000,
  "mainTokenSymbol": "SLP",
  "lpPair": "0x8616B44b734817a2C954016A57CF2c4D72D6f839",
  "lpSupply": 34782.40093,
  "lpBurnedPercent": "99.94",
  "lpLocks": {
    "pinksale": "null",
    "onlymoons": {
      "lockDate": "1676137399000",
      "amount": 1316304.79392186,
      "unlockDate": "1707634800000",
      "lockID": "200",
      "owner": "0x54aAa2e0C296008E992897979078f66Ddf876b86",
      "percentageLocked": "95"
    },
    "dxsale": "null"
  },
  "priceImpact": "0.1",
  "problem": "true",
  "extra": "Liquidity low or problem with the purchase!"
}

Last updated