More resources
Query current wallet address

Query current wallet address#

Query which chains are under the current wallet and their addresses.

Request URL#

GET https://www.okx.com/api/v5/waas/wallet/get-addresses

Request parameters#

ParameterTypeRequiredDescription
walletIdStringYesUnique identifier of the wallet

Response parameters#

ParameterTypeDescription
chainIdStringUnique identifier of the chain
addressStringAddress of a chain

Request example#

shell
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'

Response example#

200
{
  "code": "0",
  "msg": "success",
  "data": [
    {
      "chainId": "1",
      "address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
    },
    {
      "chainId": "66",
      "address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
    },
    {
      "chainId": "56",
      "address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
    },
    {
      "chainId": "137",
      "address": "0x238193be9e80e68eace3588b45d8cf4a7eae0fa3"
    }
  ]
}