> ## 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.

# Get member orders

> Get a user's orders on the getequity platform

<ParamField path="id" type="string" required>
  The ID of the member whose tokens needs to be retrieved.
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
      "status": "success",
      "message": "Orders gotten successfully",
      "data": {
          "page": 1,
          "pages": 0,
          "count": 0,
          "total": 0,
          "orders": []
      },
      "meta": {
          "page": 1,
          "limit": 20,
          "sort": "-createdAt",
          "totalDocs": 0,
          "totalPages": 0,
          "hasPrevPage": false,
          "hasNextPage": false,
          "offset": 0,
          "prevPage": null,
          "nextPage": null
      }
  }
  ```
</ResponseExample>
