Skip to main content
GET
https://apis.hopnow.io
/
v1
/
accounts
/
{account_id}
/
wallets
/
{wallet_id}
/
addresses
Get Wallet Addresses
curl --request GET \
  --url https://apis.hopnow.io/v1/accounts/{account_id}/wallets/{wallet_id}/addresses \
  --header 'Authorization: Bearer <token>'
{
  "wallet_id": "<string>",
  "object": "<string>",
  "addresses": [
    {
      "address": "<string>",
      "tag": "<string>"
    }
  ]
}

Path Parameters

account_id
string
required
The account’s external ID (starts with acc_)
wallet_id
string
required
The wallet’s external ID (starts with wlt_)

Response

wallet_id
string
Wallet external ID
object
string
Always returns "wallet_addresses"
addresses
array
Array of address objects

Response Example

{
  "wallet_id": "wlt_1234567890abcdef",
  "object": "wallet_addresses",
  "addresses": [
    {
      "address": "0x1234567890abcdef1234567890abcdef12345678",
      "tag": null
    }
  ]
}