Skip to main content
organizationId
string
required
Unique identifier for a given Organization.
walletId
string
required
Unique identifier for a given Wallet.
address
string
Address corresponding to a Wallet Account.
path
string
Path corresponding to a Wallet Account.
A successful response returns the following fields:
account
object
required
account field
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/get_wallet_account \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>",
    "walletId": "<string>",
    "address": "<string>",
    "path": "<string>"
}'
{
  "account": {
    "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>"
    },
    "publicKey": "<string>"
  }
}