Skip to main content
POST
/
v2
/
hashdit
/
address-security-v2
curl --request POST \
  --url https://service.hashdit.io/v2/hashdit/address-security-v2 \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <x-api-key>' \
  --data '
{
  "chainId": "56",
  "address": "0x73feaa1ee314f8c655e354234017be2193c9e24e"
}
'
{
  "code": "0",
  "status": "ok",
  "data": {
    "address": "bsc:0x73feaa1ee314f8c655e354234017be2193c9e24e",
    "address_type": "MasterChef",
    "market": {
      "low_activity": "0",
      "newly_deployed": "0"
    },
    "overall_risk_level": "No Obvious Risk",
    "overall_score": "90",
    "privilege": {
      "has_hidden_owner": "0",
      "has_trade_limitation": "0",
      "overpowered_function": "0",
      "owner_type": "contract"
    },
    "rugpull": {
      "code_obfuscation": "0",
      "has_backdoor": "0",
      "has_migrator": "1",
      "is_honeypot": "",
      "is_known_rugpull": "",
      "is_metamorphic": "0",
      "is_ponzi": "0"
    },
    "scanned_time": 1764270688,
    "security": {
      "has_external_calls": "1",
      "has_insecure_code_practice": "1",
      "has_known_vulnerability": "0",
      "malicious_activity": "0",
      "risky_external_calls": "0"
    },
    "status": 200,
    "threat_intelligence": {
      "risk_level": "0",
      "trust_level": "3"
    },
    "transparency": {
      "can_self_destruct": "0",
      "dependency_unverified": "0",
      "is_proxy": "0",
      "proxy_implementation_verified": "",
      "verified": "1"
    }
  }
}

Headers

X-API-Key
string
required

Your HashDit API key

Body

application/json

Blockchain 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

The blockchain address to analyze.

Example:

"0x73feaa1ee314f8c655e354234017be2193c9e24e"

Response

Successful response

code
string

API status code. "0" indicates success.

Example:

"0"

status
string

Request status.

Example:

"ok"

data
object