SDK Explorer

Retrieve a list of all wallet sets.

Parameters
input
object

Represents the input for listing wallet sets.

xRequestId
string

Developer-provided parameter used to identify this request.

from
string

Start time of the query, inclusive.

pageAfter
string

Used to return items after the specified item exclusively. SHOULD NOT be used in conjunction with pageBefore.

pageBefore
string

Used to return items before the specified item exclusively. SHOULD NOT be used in conjunction with pageAfter.

pageSize
number

The number of items to return.

to
string

End time of the query, inclusive. Defaults to the current time.

Responses
Example
1const response = await client.listWalletSets()
2console.log(response.data?.walletSets)
ResponseChoose an example
1{
2  "data": {
3    "walletSets": [
4      {
5        "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
6        "createDate": "2023-01-01T12:04:05Z",
7        "updateDate": "2023-01-01T12:04:05Z",
8        "custodyType": "DEVELOPER"
9      }
10    ]
11  }
12}
Did this page help you?
© 2023-2025 Circle Technology Services, LLC. All rights reserved.