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

/getsimilarexact

Quick Intel Security API /getsimilarexact/{chain}/{tokenAddress} returns the similar/exact contracts for a given token across all the chains supported by Quick Intel.

Previous/honeypot (by Token)NextAPI Guides

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 Similar & Exact Tokens

get

Returns the similar/exact contracts for a given token across all the chains supported by Quick Intel.

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 searched against.

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/getsimilarexact/{chain}/{tokenAddress} HTTP/1.1
Host: api.quickintel.io
X-QKNTL-KEY: YOUR_API_KEY
Accept: */*
{
  "token_Searched_Details": {
    "token_Chain": "Chain",
    "token_Address": "0x54aaa2e0c296008e992897979078f66ddf876b86",
    "token_Name": "Sample Token",
    "token_Symbol": "SMPLTKN",
    "similar_qhash": "q-123456abc",
    "exact_qhash": "q-123456abc"
  },
  "similar_Contracts": [
    {
      "tokenAddress": "0x54aaa2e0c296008e992897979078f66ddf876b86",
      "tokenChain": "Chain",
      "tokenDecimals": 8,
      "tokenName": "Sample Token",
      "tokenSymbol": "SMPLTKN",
      "isScam": "true"
    }
  ],
  "exact_Contracts": [
    {
      "tokenAddress": "0x54aaa2e0c296008e992897979078f66ddf876b86",
      "tokenChain": "Chain",
      "tokenDecimals": 8,
      "tokenName": "Sample Token",
      "tokenSymbol": "SMPLTKN",
      "isScam": "true"
    }
  ],
  "message": "There were no similar or exact contracts matched. This contract is unique."
}