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
Get Wallet
Get details about a Wallet
POST
/
public
/
v1
/
query
/
get_wallet
curl --request POST \
--url https://api.turnkey.com/public/v1/query/get_wallet \
--header 'Content-Type: application/json' \
--header 'X-Stamp: <api-key>' \
--data '{
"organizationId": "<string>",
"walletId": "<string>"
}'
{
"wallet": {
"walletId": "<string>",
"walletName": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"exported": true,
"imported": true
}
}
Authorizations
Body
application/json
Unique identifier for a given Organization.
Unique identifier for a given Wallet.
Response
200 - application/json
A successful response.
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.
Was this page helpful?
curl --request POST \
--url https://api.turnkey.com/public/v1/query/get_wallet \
--header 'Content-Type: application/json' \
--header 'X-Stamp: <api-key>' \
--data '{
"organizationId": "<string>",
"walletId": "<string>"
}'
{
"wallet": {
"walletId": "<string>",
"walletName": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"exported": true,
"imported": true
}
}