Skip to main content
POST
https://api.0xkey.io
/
public
/
v1
/
query
/
get_wallet_account
Get wallet account
curl --request POST \
  --url https://api.0xkey.io/public/v1/query/get_wallet_account \
  --header 'Content-Type: application/json' \
  --header 'X-Stamp: <api-key>' \
  --data '
{
  "organizationId": "<string>",
  "walletId": "<string>"
}
'
{
  "account": {
    "walletAccountId": "<string>",
    "organizationId": "<string>",
    "walletId": "<string>",
    "curve": "CURVE_UNSPECIFIED",
    "pathFormat": "PATH_FORMAT_UNSPECIFIED",
    "path": "<string>",
    "addressFormat": "ADDRESS_FORMAT_UNSPECIFIED",
    "address": "<string>",
    "createdAt": {
      "seconds": "<string>",
      "nanos": "<string>"
    },
    "updatedAt": {
      "seconds": "<string>",
      "nanos": "<string>"
    },
    "publicKey": "<string>",
    "walletDetails": {
      "walletId": "<string>",
      "walletName": "<string>",
      "createdAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "updatedAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "exported": true,
      "imported": true
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.0xkey.io/llms.txt

Use this file to discover all available pages before exploring further.

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

A successful response.

account
An account derived from a Wallet · object
required