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>"
}
}
Get details about a Wallet
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>"
}
}
Show wallet details
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>"
}
}
Was this page helpful?