Query which chains are under the current wallet and their addresses.
GET https://www.okx.com/api/v5/waas/wallet/get-addresses
Parameter | Type | Required | Description |
---|---|---|---|
walletId | String | Yes | Unique identifier of the wallet |
Parameter | Type | Description |
---|---|---|
chainId | String | Unique identifier of the chain |
address | String | Address of a chain |
curl --location --request GET 'https://www.okx.com/api/v5/waas/wallet/get-addresses?walletId=13886e05-1265-4b79-8ac3-b7ab46211001' \
--header 'OK-ACCESS-PROJECT: 86af********d1bc' \
--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'
{
"code": "0",
"msg": "success",
"data": [
{
"chainId": "1",
"address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
},
{
"chainId": "66",
"address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
},
{
"chainId": "56",
"address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
},
{
"chainId": "137",
"address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
}
]
}