curl --request POST \
  --url https://api.turnkey.com/public/v1/query/list_wallet_accounts \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <YOUR_API_KEY.YOUR_API_SECRET>" \
  --data '{
    "organizationId": "<string>",
    "walletId": "<string>",
    "paginationOptions": {
        "limit": "<string>",
        "before": "<string>",
        "after": "<string>"
    }
}'
{
  "activity": {
    "id": "<activity-id>",
    "status": "ACTIVITY_STATUS_COMPLETED",
    "type": "ACTIVITY_TYPE_UNKNOWN_V1",
    "organizationId": "<organization-id>",
    "timestampMs": "<timestamp> (e.g., 1745474677464)",
    "result": {
      "accounts": [
        {
          "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>"
          }
        }
      ]
    }
  }
}
POST
/
public
/
v1
/
query
/
list_wallet_accounts

Authorizations

X-Stamp
string
header
required

Body

organizationId
string
required

Unique identifier for a given Organization.

walletId
string
required

Unique identifier for a given Wallet.

paginationOptions
object

paginationOptions field

Response

A successful response returns the following fields:

accounts
array
required

A list of Accounts generated from a Wallet that share a common seed.

curl --request POST \
  --url https://api.turnkey.com/public/v1/query/list_wallet_accounts \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <YOUR_API_KEY.YOUR_API_SECRET>" \
  --data '{
    "organizationId": "<string>",
    "walletId": "<string>",
    "paginationOptions": {
        "limit": "<string>",
        "before": "<string>",
        "after": "<string>"
    }
}'
{
  "activity": {
    "id": "<activity-id>",
    "status": "ACTIVITY_STATUS_COMPLETED",
    "type": "ACTIVITY_TYPE_UNKNOWN_V1",
    "organizationId": "<organization-id>",
    "timestampMs": "<timestamp> (e.g., 1745474677464)",
    "result": {
      "accounts": [
        {
          "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>"
          }
        }
      ]
    }
  }
}