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

# List Members

> Fetch all contacts belonging to a specific segment with pagination.

<ParamField path="id" type="string" required>
  The ID of the id.
</ParamField>

### Query Parameters

<ParamField query="page" type="integer">
  Page number
</ParamField>

<ParamField query="limit" type="integer">
  Number of records per page
</ParamField>

<ParamField query="search" type="string">
  Search by email or name within the list
</ParamField>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "recipients": [
        {
          "id": "rec-123",
          "email": "user@segment.com",
          "is_subscribed": true
        }
      ],
      "pagination": {
        "total": 450,
        "page": 1,
        "limit": 50,
        "pages": 9
      }
    }
  }
  ```
</ResponseExample>
