Address Classification
Address Classification
Classifies a blockchain address by type and behavior. The API identifies whether an address is an externally owned account (EOA) or contract, determines contract characteristics (e.g. proxy patterns), and provides verification and token standard metadata.
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"
}
}Request fields accept both
camelCase and snake_case. See Request Field Names.Headers
Your HashDit API key
Body
application/json
Blockchain address to classify
The network chain ID. See Supported Chains for a complete list of supported network for this endpoint.
Example:
"56"
The blockchain address to classify.
Example:
"0x01bff41798a0bcf287b996046ca68b395dbc1071"
Was this page helpful?