curl --request POST \
  --url https://api.turnkey.com/public/v1/query/list_wallets \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>"
}'
{
  "wallets": [
    {
      "walletId": "<string>",
      "walletName": "<string>",
      "createdAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "updatedAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "exported": "<boolean>",
      "imported": "<boolean>"
    }
  ]
}
POST
/
public
/
v1
/
query
/
list_wallets

Authorizations

X-Stamp
string
required
Cryptographically signed (stamped) request to be passed in as a header. For more info, see here.

Body

organizationId
string
required
Unique identifier for a given Organization.

Response

A successful response returns the following fields:
wallets
array
required
A list of Wallets.
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/list_wallets \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>"
}'
{
  "wallets": [
    {
      "walletId": "<string>",
      "walletName": "<string>",
      "createdAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "updatedAt": {
        "seconds": "<string>",
        "nanos": "<string>"
      },
      "exported": "<boolean>",
      "imported": "<boolean>"
    }
  ]
}