# List customers Get a paginated list of all customers you saved in your system Endpoint: GET /customers Version: 1.0.0 Security: ApiKeyAuth ## Query parameters: - `limit` (integer) The maximum number of customers to return - `offset` (integer) The number of customers to skip ## Response 200 fields (application/json): - `data` (array) - `data.id` (string) Example: "cust_1ks881js771j" - `data.first_name` (string) - `data.last_name` (string) - `data.email` (string) - `data.address` (object) - `data.address.address_line_1` (string) Example: "123 Main St" - `data.address.address_line_2` (string) Example: "Apt 101" - `data.address.city` (string) Example: "San Francisco" - `data.address.state` (string) Example: "CA" - `data.address.postal_code` (string) Example: "94107" - `data.address.country` (string) Example: "US" - `metadata` (object) - `metadata.total` (integer) - `metadata.limit` (integer) - `metadata.offset` (integer) ## Response 401 fields ## Response 500 fields