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 Token)

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

Previous/honeypot (by Dex & LP)Next/getsimilarexact

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 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
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/{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
  }
}