Documentation Index
Fetch the complete documentation index at: https://turnkey-0e7c1f5b-9-digit-updates.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
API Key
Webauthn (Passkey)
Body
Unique identifier for a given Organization.
Response
A successful response returns the following fields:
A list of Wallets.
Unique identifier for a given Wallet.
Human-readable name for a Wallet.
createdAt field
wallets.createdAt.seconds
updatedAt field
wallets.updatedAt.seconds
True when a given Wallet is exported, false otherwise.
True when a given Wallet is imported, false otherwise.
curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_wallets \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <YOUR_API_KEY.YOUR_API_SECRET>" \
--data '{
"organizationId": "<string>"
}'
{
"activity": {
"id": "<activity-id>",
"status": "ACTIVITY_STATUS_COMPLETED",
"type": "ACTIVITY_TYPE_UNKNOWN_V1",
"organizationId": "<organization-id>",
"timestampMs": "<timestamp> (e.g. 1746736509954)",
"result": {
"wallets": [
{
"walletId": "<string>",
"walletName": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"exported": true,
"imported": true
}
]
}
}
}