Address Label

Get labels for a single address

Return label information for a target address

GET https://aml.blocksec.com/api/aml/v2/address

Path Parameters

Name
Type
Description

chain*

String

address*

String

target address

Headers

Name
Type
Description

API-KEY*

String

Your API Key

curl --location 'https://aml.blocksec.com/api/aml/v2/address/eth/0x5b5082214d62585d686850ab8d9e3f6b6a5c58ff' \
--header 'API-KEY: $ApiKey'

Get labels for multiple addresses

GET https://aml.blocksec.com/api/aml/v2/addresses

Path Parameters

Name
Type
Description

chain*

String

addresses*

String

Target addresses that connected into a single string using ', ' as separators. The number of addresses in a single request should not exceed 100.

Headers

Name
Type
Description

API-KEY*

String

Your api key

Sample Request

curl --location 'https://aml.blocksec.com/api/aml/v2/addresses/eth/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48,0x0191e884bf8e21e138e161da520f94d4bbc79c1c' \
--header 'API-KEY: $ApiKey'

Response Data Parameters

Field
Type
Description

address

String

Target address

is_address_valid

Boolean

Whether the address conforms to the address format of the target blockchain

chain

String

Target blockchain

is_contract

Boolean

Wherther the target address is a contract

*labels

Object

compatible_chain_labels

Array

risk

Integer

Risk Score

For italic words, refer to Appendix 1: Glossary for explanations.

Subfields of the labels field

Field
Type
Description

chain

String

The chain the address belongs to. Avaliable for compatible_chain_labels

entity_info

Object

Entity information, subfields listed below

> entity_type

String

‘first’ indicates the Entity, ‘second’ indicates the Secondary Entity

> entity

String

The name of Entity

> category

String

The category of Entity

> entity_property

String

Entity Property

> confidence

Integer

The Confidence of entity info

property_info

Object

Property information, subfields listed below

> address_property

String

Address Property

> category

String

The category of address property

> confidence

Integer

The Confidence of address property

contract_info

Object

Contract information if it's a contract address, subfields listed below

> contract_name

String

Contract name

> token_name

String

Token name if it's a token contract

name_tag

String

Name Tag

others

Array

List of label information, subfields listed below

> label

String

Labels do not fall into the above fields

> confidence

Integer

The Confidence for each label

Last updated