Skip to main content
POST
/
v2
/
hashdit
/
address-classify
curl --request POST \
  --url https://service.hashdit.io/v2/hashdit/address-classify \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <x-api-key>' \
  --data '
{
  "chainId": "56",
  "address": "0x55d398326f99059ff775485246999027b3197955"
}
'
{
  "code": "0",
  "status": "ok",
  "data": {
    "address": "bsc:0x55d398326f99059ff775485246999027b3197955",
    "address_type": "Contract",
    "classification": "ERC20",
    "classification_id": 101,
    "details": {
      "is_verified": true,
      "proxy_impl_address": "",
      "proxy_impl_type": ""
    },
    "is_erc20": "1",
    "scanned_time": 1766048799,
    "status": 200,
    "timestamp": "2025-12-18T09:06:43.166765",
    "verify_status": "verified"
  }
}

Headers

X-API-Key
string
required

Your HashDit API key

Body

application/json

Blockchain address to classify

chainId
string
required

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

Example:

"56"

address
string
required

The blockchain address to classify.

Example:

"0x01bff41798a0bcf287b996046ca68b395dbc1071"

Response

Successful response

code
string

API status code. "0" indicates success.

Example:

"0"

status
string

Request status.

Example:

"ok"

data
object