SDK Explorer

Retrieve an existing wallet set.

Parameters
id
string
Required

The universally unique identifier of the resource.

x_request_id
string

Developer-provided parameter used to identify this request. Useful when communicating with Circle Support.

Responses
Example
1from circle.web3 import developer_controlled_wallets
2from circle.web3 import utils
3
4client = utils.init_developer_controlled_wallets_client(api_key=key, entity_secret=entitySecret)
5
6api_instance = developer_controlled_wallets.WalletSetsApi(client)
7response = api_instance.get_wallet_set(id='b3fa50d0-5fca-527f-b13e-979a6f5ee419')
8print(response.json())
9
ResponseChoose an example
1{
2  "data": {
3    "wallet_set": {
4      "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
5      "create_date": "2023-01-01T12:04:05Z",
6      "update_date": "2023-01-01T12:04:05Z",
7      "custody_type": "DEVELOPER"
8    }
9  }
10}
Did this page help you?
© 2023-2025 Circle Technology Services, LLC. All rights reserved.