# Retrieve all customers created by the superclient Returns a paginated list of all customers created by the requesting superclient. Endpoint: GET /customer Version: 1.0 Security: api-key ## Query parameters: - `page` (number) Page number (starting from 1) Example: 1 - `limit` (number) Number of customers per page (max 100) Example: 10 ## Response 200 fields (application/json): - `customers` (array) - `customers.id` (string) Customer unique identifier - `customers.name` (string) Customer company name - `customers.companyIco` (string) Company ICO/registration number - `customers.defaultChain` (string) Default blockchain - `customers.defaultChainAddress` (string) Default blockchain address - `customers.defaultBankAddress` (string) Default bank IBAN address - `customers.kycVerified` (boolean) KYC verification status - `customers.balance` (number) Customer balance - `customers.createdAt` (string) Creation timestamp - `pagination` (object) - `pagination.page` (number) Current page number - `pagination.limit` (number) Number of items per page - `pagination.total` (number) Total number of customers - `pagination.totalPages` (number) Total number of pages ## Response 401 fields