Skip to main content
POST
/
v2
/
hashdit
/
token-security
EVM Token Security
curl --request POST \
  --url https://service.hashdit.io/v2/hashdit/token-security \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <x-api-key>' \
  --data '
{
  "chainId": "56",
  "address": "0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82"
}
'
{
  "code": "0",
  "status": "ok",
  "data": {
    "address": "bsc:0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82",
    "address_type": "ERC20",
    "overall_risk_level": "No Obvious Risk",
    "overall_score": "90",
    "basic_info": {
      "token_name": "PancakeSwap Token",
      "token_symbol": "Cake",
      "token_decimals": "18",
      "days_deployed": "1913",
      "is_mintable": "1",
      "is_in_dex": "1",
      "verified": "1"
    },
    "privileges": {
      "owner_address": "0x73feaa1eE314F8c655E354234017bE2193C9E24E",
      "owner_type": "contract",
      "dev_malicious": "0"
    },
    "security_risks": {
      "is_honeypot": "0",
      "hidden_owner": "0",
      "self_destruct": "0",
      "unlimited_mintable": "1"
    },
    "token_market": {
      "holders_count": "1870482",
      "owner_token_percent": "0.0024",
      "holders_concentration": {
        "top1_eoa_concentration": "0.0017",
        "top5_eoa_concentration": "0.0017"
      }
    },
    "trade_analysis": {
      "sell_tax": "0.0000",
      "transfer_tax": "0.0000"
    },
    "transfer_restrictions": {
      "is_anti_whale": "0",
      "transfer_pausable": "0",
      "transfer_blacklist": "0"
    },
    "threat_intelligence": {
      "risk_level": "0",
      "trust_level": "3"
    },
    "scanned_time": 1766092636
  }
}

Headers

X-API-Key
string
required

Your HashDit API key

Body

application/json

Token contract address to analyze

chainId
string
required

The network chain ID. See Supported Chains for a complete list of supported networks for this endpoint.

Example:

"56"

address
string
required

Token contract address.

Example:

"0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82"

Response

Successful response

code
string

API result code. "0" indicates success.

Example:

"0"

status
string

Request status.

Example:

"ok"

data
object