Skip to main content
GET
/
v2
/
account
/
beneficiaries
/
wallets
Get Beneficiary Wallets
curl --request GET \
  --url https://api.avenia.io:8443/v2/v2/account/beneficiaries/wallets \
  --header 'Authorization: Bearer <token>'
{
  "wallets": [
    {
      "id": "<string>",
      "alias": "<string>",
      "description": "<string>",
      "walletAddress": "<string>",
      "walletChain": "<string>",
      "walletMemo": "<string>",
      "createdAt": "<string>"
    }
  ],
  "cursor": "<string>"
}

Get Beneficiary Wallets

GET request to /v2/account/beneficiaries/wallets

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

subAccountId
string

Sub-account ID

createdAfter
integer

Filter wallets created after timestamp

createdBefore
integer

Filter wallets created before timestamp

cursor
string

Cursor for pagination

alias
string

Filter by alias

walletAddress
string

Filter by wallet address

walletChain
string

Filter by wallet chain

Response

200 - application/json

OK

wallets
object[]
required
cursor
string
required