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

# Get Watchlist Entities

> Get entities in a watchlist with pagination

Retrieve entities in a watchlist with pagination and optional search.

## Path Parameters

<ParamField path="watchlist_id" type="string" required>
  Watchlist ID
</ParamField>

## Headers

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer <access_token>`
</ParamField>

## Query Parameters

<ParamField query="page" type="number" default="1">
  Page number
</ParamField>

<ParamField query="limit" type="number" default="10">
  Items per page (max: 100)
</ParamField>

<ParamField query="search_query" type="string">
  Search entities within the watchlist by name
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.finscreener.in/api/watchlist/wl_123/entities?page=1&limit=10" \
    -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.finscreener.in/api/watchlist/wl_123/entities",
      params={"page": 1, "limit": 10},
      headers={"Authorization": f"Bearer {token}"}
  )
  entities = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "entities": [
      {
        "CIN": "U72200MH2004PTC148441",
        "companyName": "TATA CONSULTANCY SERVICES LIMITED",
        "City": "Mumbai",
        "llpStatus": "Active"
      }
    ],
    "total": 25,
    "page": 1,
    "limit": 10
  }
  ```
</ResponseExample>
