List all wallets

GET {{baseUrl}}/v1/wallets

Retrieves a list of a user's wallets.

Request Params

KeyDatatypeRequiredDescription
fromstringQueries items created since the specified date-time (inclusive).
tostringQueries items created before the specified date-time (inclusive).
pageBeforestringA collection ID value used for pagination.

It marks the exclusive end of a page. When provided, the collection resource will return the next n items before the id, with n being specified by pageSize.

The items will be returned in the natural order of the collection.

The resource will return the first page if neither pageAfter nor pageBefore are specified.

SHOULD NOT be used in conjuction with pageAfter. | | pageAfter | string | | A collection ID value used for pagination.

It marks the exclusive begin of a page. When provided, the collection resource will return the next n items after the id, with n being specified by pageSize.

The items will be returned in the natural order of the collection.

The resource will return the first page if neither pageAfter nor pageBefore are specified.

SHOULD NOT be used in conjuction with pageBefore. | | pageSize | number | | Limits the number of items to be returned.

Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used.

If avoided, the collection will determine the page size itself. |

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{"data":[{"walletId":"1016884075","entityId":"dfee2397-f3d6-4676-8405-4dda7e1b5b0d","type":"end_user_wallet","description":"Test wallet","balances":[{"amount":"4.00","currency":"USD"}]},{"walletId":"1010400470","entityId":"dfee2397-f3d6-4676-8405-4dda7e1b5b0d","type":"end_user_wallet","description":"Test Wallet for Xapo","balances":[{"amount":"1000.00","currency":"USD"}]},{"walletId":"1001429912","entityId":"dfee2397-f3d6-4676-8405-4dda7e1b5b0d","type":"end_user_wallet","description":"Min's","balances":[]},{"walletId":"1001429908","entityId":"dfee2397-f3d6-4676-8405-4dda7e1b5b0d","type":"end_user_wallet","description":"Your payments end_user_wallet account","balances":[]},{"walletId":"1000927099","entityId":"dfee2397-f3d6-4676-8405-4dda7e1b5b0d","type":"end_user_wallet","description":"Wallet for postman","balances":[]},{"walletId":"1000789094","entityId":"dfee2397-f3d6-4676-8405-4dda7e1b5b0d","type":"end_user_wallet","description":"Your payments end_user_wallet account","balances":[]},{"walletId":"1000594146","entityId":"dfee2397-f3d6-4676-8405-4dda7e1b5b0d","type":"merchant","balances":[{"amount":"0.123330811621508032","currency":"ETH"},{"amount":"4824522942.77","currency":"USD"}]}]}