Documentation Index
Fetch the complete documentation index at: https://docs.turnkey.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API Key
WebAuthn (Passkey)
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Body
Unique identifier for a given organization.
Unique identifier for a given wallet.
Response
A successful response returns the following fields:
wallet field
Unique identifier for a given Wallet.
Human-readable name for a Wallet.
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/get_wallet \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>",
"walletId": "<string>"
}'
{
"wallet": {
"walletId": "<string>",
"walletName": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"exported": "<boolean>",
"imported": "<boolean>"
}
}