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-evmRequest Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| chainShortName | String | Yes | The abbreviated name of the blockchain network, e.g, TRADE_ZONE |
| address | String | Yes | The EVM address to query |
Response Parameters#
| Parameter | Type | Description |
|---|---|---|
| address | String | The queried address |
| lastTransactionTime | String | Last transaction time (ms) |
| transactionCount | String | Total 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"
}
]
}
