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

# List Watchlists

> Get all user watchlists

Retrieve all watchlists created by the authenticated user.

## 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">
  Results per page (max: 100)
</ParamField>

<ParamField query="search" type="string">
  Search watchlists by name
</ParamField>

## Response

<ResponseField name="data" type="array">
  <Expandable title="items">
    <ResponseField name="id" type="string">Watchlist ID</ResponseField>
    <ResponseField name="name" type="string">Watchlist name</ResponseField>
    <ResponseField name="type" type="string">Entity type (company, director, gst)</ResponseField>
    <ResponseField name="count" type="number">Number of items</ResponseField>
    <ResponseField name="created_at" type="string">Creation timestamp</ResponseField>
  </Expandable>
</ResponseField>

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

<ResponseExample>
  ```json Success theme={null}
  {
    "data": [
      {
        "id": "wl_123",
        "name": "Target Companies",
        "type": "company",
        "count": 25,
        "created_at": "2026-01-15T10:00:00Z"
      }
    ],
    "total": 3,
    "page": 1,
    "limit": 10
  }
  ```
</ResponseExample>
