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

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
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."
}

Last updated