v1

latestOpenAPI 3.1.02026-07-265385123.6 KB
Account

Get subaccounts

Retrieve all subaccounts for a specific owner address. Returns subaccount addresses and their associated metadata.

get/api/v1/subaccounts

Query parameters

ownerstring required

Owner account address

Response

Subaccounts retrieved successfully

custom_labelstring nullable
is_activeboolean required
is_primaryboolean required
primary_account_addressstring required
subaccount_addressstring required

Example response

[
  {
    "custom_label": "My Subaccount",
    "is_primary": true,
    "primary_account_address": "0x123...",
    "subaccount_address": "0x123..."
  }
]