Get Address Information#

Get basic information about a TradeZone EVM address, including last transaction time and total transaction count.

Request Path#

GET
https://web3.okx.com/api/v5/xlayer/tz/address/information-evm

Request Parameters#

ParameterTypeRequiredDescription
chainShortNameStringYesThe abbreviated name of the blockchain network, e.g, TRADE_ZONE
addressStringYesThe EVM address to query

Response Parameters#

ParameterTypeDescription
addressStringThe queried address
lastTransactionTimeStringLast transaction time (ms)
transactionCountStringTotal number of transactions

Request Example#

shell
curl --location --request GET 'https://web3.okx.com/api/v5/xlayer/tz/address/information-evm?chainShortName=TRADE_ZONE&address=0x7ad674c0595de0885f7335b8dcaa91ca5d1723e5' \
--header 'OK-ACCESS-KEY: 37c541a1-****-****-****-10fe7a038418' \
--header 'OK-ACCESS-SIGN: leaV********3uw=' \
--header 'OK-ACCESS-PASSPHRASE: 1****6' \
--header 'OK-ACCESS-TIMESTAMP: 2023-10-18T12:21:41.274Z'

Response Example#

json
{
    "code": "0",
    "msg": "",
    "data": [
        {
            "address": "0x7ad674c0595de0885f7335b8dcaa91ca5d1723e5",
            "lastTransactionTime": "1779167134517",
            "transactionCount": "9341"
        }
    ]
}