POST
/
public
/
v1
/
query
/
get_wallet_account
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/get_wallet_account \
  --header 'Content-Type: application/json' \
  --header 'X-Stamp: <api-key>' \
  --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>"
    }
  }
}

Authorizations

X-Stamp
string
header
required

Body

application/json
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.

Response

200 - application/json
A successful response.
account
object
required