Quick Intel Documentation
  • πŸ‘‹Introduction
    • Welcome to Quick Intel
    • Supported Chains
  • πŸͺ™QKNTL Token
    • Introduction
    • Token Information
    • Tiers & Benefits
    • Bridge (ETH <> ARB)
  • πŸ”ŽQuick Intel Scanner
    • Introduction
    • Supported Chains
    • LP Locker / LP Burn Support
    • Get Started Guides
      • πŸ”ŒScan A Contract
      • πŸ—ΊοΈScanner Overview
      • πŸ’²Token Details
      • πŸ‘οΈScanner Results
      • πŸ“„Other Features
    • ShadowShield AI
    • VeriFi - Project Info
  • 🧠Agent Studio
    • Introduction
  • 🦊MetaMask Snap
    • Introduction
    • Supported Chains
    • Snap FAQ
    • Snap Results Guides
      • πŸ”ŒQuick Intel Snap Scan
      • πŸ‘οΈView Snap Scan Results
  • πŸ‘¨β€πŸ’»Developer / Integration
    • API Integration
      • Introduction
      • πŸ”API Authentication
      • Supported Chains and DEX
      • API Endpoints
        • /getquickiaudit
        • /getquickiauditfull
        • /honeypot (by Dex & LP)
        • /honeypot (by Token)
        • /getsimilarexact
      • API Guides
        • Quick Intel Audit - Results
        • Quick Intel Audit Full
        • Honeypot/Tax Check
        • Honeypot/Tax Check - Results
    • Website Widget
    • Discord / TG Bots
      • Get Started Guides
        • βž•Installing and Configuring Bot
        • 🚢Run a Scan
        • πŸ”ŽRead results of Quick Intel Scan - Telegram
        • πŸ”ŽRead results of Quick Intel Scan - Discord
  • 🧠CRYPTO TERMINOLOGY
    • Categories
      • 1. Core Blockchain Concepts
      • 2. Cryptographic Elements
      • 3. Smart Contracts
      • 4. Tokens and Assets
      • 5. Trading and Exchange
      • 6. DeFi (Decentralized Finance)
      • 7. Wallets and Transactions
      • 8. Governance and Economics
      • 9. Technical Trading
  • ⁉️TROUBLESHOOTING
    • MetaMask Wallet Connect
  • πŸ“šResources
    • Official Links
    • Support & Team Contacts
    • Roadmap
    • Policies
Powered by GitBook
On this page
  1. Developer / Integration
  2. API Integration
  3. API Endpoints

/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.

Previous/getquickiauditfullNext/honeypot (by Token)

Last updated 3 months ago

For the most up-to-date API info, please use these links...

Official API Documentation:

API Subscription Information:

API Authentication information can be found here: API Authentication

πŸ‘¨β€πŸ’»
https://developer.quickintel.io/apis
https://developer.quickintel.io/products

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
400
Malformed parameters or other bad request.
application/json
403
Invalid endpoint requested
application/json
404
Invalid API Key
application/json
500
Internal error
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!"
}