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

# Get List of List Entries

> This endpoint returns all entry data of selected list

#### Description

This API endpoint enables the retrieval of list entries. The structure of the list entries is dynamic and varies depending on the list and attributes, with no fixed response keys within the data.

#### Path

<ParamField path="listId" type="string" required>
  A unique identifier for the list.
</ParamField>

#### Body

<ParamField body="filter" type="object">
  An object that will eventually allow users to define specific criteria for
  filtering data. Currently, it is an empty object, indicating that no filtering
  is applied at this time.
</ParamField>

<ParamField body="sort" type="array">
  An array that will eventually enable users to specify sorting criteria for the
  data. it is currently empty, implying that no sorting is applied in the
  current context.
</ParamField>

<ParamField body="limit" type="number" required>
  he number of entries to be returned, set to 10 in this instance. This
  parameter restricts the response to a specific quantity of entries.
</ParamField>

<ParamField body="offset" type="number" required>
  The starting point from which the entries are to be fetched within the entire
  dataset. In this case, it is set to 0, indicating that retrieval should
  commence from the beginning of the dataset.
</ParamField>

#### Response

<ResponseField name="status" type="boolean">
  Indicates the success or failure of the response. In this case, true signifies
  a successful operation.
</ResponseField>

<ResponseField name="message" type="string">
  Provides a human-readable message accompanying the response. In this instance,
  it confirms the successful retrieval of the entries with the message "List
  Entries fetched successfully"
</ResponseField>

<ResponseField name="data" type="array_object">
  The structure of the list entries is dynamic and varies depending on the list
  and attributes, with no fixed response keys within the data.
</ResponseField>

<ResponseExample>
  ```json 200-Success theme={null}
  {
      "status": true,
      "message": "List Entries fetched successfully",
      "data": [
          {
              "_id": "65321b9a05ca4dc48ed8b231",
              "owner": {
                  "_id": "63d0e0b2eaa35b73f3b23450",
                  "name": "Test User",
                  "avatar": "",
                  "email": "test@outlook.com"
              },
              "createdAt": "2023-10-20T06:18:02.403Z",
              "apiPipeline3": null
          }
      ]
  }
  ```

  ```json 401-Unauthorised theme={null}
  {
    "status": false,
    "message": "No token provided"
  }
  ```
</ResponseExample>
