> ## Documentation Index
> Fetch the complete documentation index at: https://getequity.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch All Customers

> Returns a paginated list of all customers of an api client.

<ResponseExample>
  ```json theme={null}
  {
    "status": "success",
    "message": "Customers gotten successfully",
    "data": [
      {
        "_id": {
          "email": "ruger@yopmail.com"
        },
        "total_trades": 1,
        "name": "Ruger Client",
        "date": "2022-03-29T09:25:53.097Z"
      },
      {
        "_id": {
          "email": "roma@yopmail.com"
        },
        "total_trades": 1,
        "name": "Roma Client",
        "date": "2022-03-29T01:15:59.706Z"
      },
      {
        "_id": {
          "email": "jazzy@yopmail.com"
        },
        "total_trades": 1,
        "name": "Don Jazzy Client",
        "date": "2022-03-29T09:25:34.119Z"
      }
    ]
  }
  ```
</ResponseExample>
