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 Accounts
List all Accounts within a Wallet
POST
/
public
/
v1
/
query
/
list_wallet_accounts
Copy
Ask AI
curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_wallet_accounts \
--header 'Content-Type: application/json' \
--header 'X-Stamp: <api-key>' \
--data '{
"organizationId": "<string>",
"walletId": "<string>",
"paginationOptions": {
"limit": "<string>",
"before": "<string>",
"after": "<string>"
}
}'
Copy
Ask AI
{
"accounts": [
{
"walletAccountId": "<string>",
"organizationId": "<string>",
"walletId": "<string>",
"curve": "CURVE_SECP256K1",
"pathFormat": "PATH_FORMAT_BIP32",
"path": "<string>",
"addressFormat": "ADDRESS_FORMAT_UNCOMPRESSED",
"address": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
}
}
]
}
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_wallet_accounts \
--header 'Content-Type: application/json' \
--header 'X-Stamp: <api-key>' \
--data '{
"organizationId": "<string>",
"walletId": "<string>",
"paginationOptions": {
"limit": "<string>",
"before": "<string>",
"after": "<string>"
}
}'
Copy
Ask AI
{
"accounts": [
{
"walletAccountId": "<string>",
"organizationId": "<string>",
"walletId": "<string>",
"curve": "CURVE_SECP256K1",
"pathFormat": "PATH_FORMAT_BIP32",
"path": "<string>",
"addressFormat": "ADDRESS_FORMAT_UNCOMPRESSED",
"address": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.