API Reference
- Overview
- Organizations
- Invitations
- Policies
- Features
Wallets and Private Keys
Users
- Users
- User Tags
- User Recovery
- User Auth
Credentials
- Authenticators
- API keys
- Sessions
Activities
- Activities
- Consensus
Wallets
List Wallets
List all Wallets within an Organization
POST
/
public
/
v1
/
query
/
list_wallets
Copy
Ask AI
curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_wallets \
--header 'Content-Type: application/json' \
--header 'X-Stamp: <api-key>' \
--data '{
"organizationId": "<string>"
}'
Copy
Ask AI
{
"wallets": [
{
"walletId": "<string>",
"walletName": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"exported": true,
"imported": true
}
]
}
Authorizations
Body
application/json
Response
200 - application/json
A successful response.
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_wallets \
--header 'Content-Type: application/json' \
--header 'X-Stamp: <api-key>' \
--data '{
"organizationId": "<string>"
}'
Copy
Ask AI
{
"wallets": [
{
"walletId": "<string>",
"walletName": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"exported": true,
"imported": true
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.