List Wallets

GET /wallets/?ownerId={userId}&paginationToken={token}

Retrieves a list of wallets.

Required Permissions

NameConditions

Wallets:Read

Always Required

Parameters

Query parameters

Query string parameterRequired/OptionalDescriptionType

ownerId

Optional

Filters the wallets returned to the userId of the owner of the wallets. Can be used to get all wallets belonging to a specific end user.

String

ownerUsername

Optional

Filters the wallets returned to the username of the owner of the wallets. Can be used to get all wallets belonging to a specific end user.

String

limit

Optional

Maximum number of items to return. Default to 50.

Number

paginationToken

Optional

Opaque token used to retrieve the next page. Returned as nextPageToken from the previous request.

String

Response

200 Response example

{
  "items": [
    {
      "id": "wa-1f04s-lqc9q-xxxxxxxxxxxxxxxx",
      "status": "Active",
      "network": "EthereumSepolia",
      "address": "0x00e3495cf6af59008f22ffaf32d4c92ac33dac47",
      "name": "my-wallet",
      "tags": [],
      "dateCreated": "2023-04-14T20:41:28.715Z"
    },
    ...
  ],
  "nextPageToken": "WszQXoENUIYyoBQjJm4DE6QhCk2sB7WAh9kykUMaTQcD25SToKbuXkgf3td8ZYb2LrtopPLo35u407gwwA1Sug=="
}

Last updated