Skip to main content
GET
/
api
/
watchlist
/
list
curl -X GET "https://api.finscreener.in/api/watchlist/list" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "watchlists": [
    {
      "id": "wl_123",
      "name": "Target Companies",
      "type": "company",
      "count": 25,
      "created_at": "2026-01-15T10:00:00Z"
    }
  ]
}
Retrieve all watchlists created by the authenticated user.

Headers

Authorization
string
required
Bearer token: Bearer <access_token>

Response

watchlists
array
curl -X GET "https://api.finscreener.in/api/watchlist/list" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
{
  "watchlists": [
    {
      "id": "wl_123",
      "name": "Target Companies",
      "type": "company",
      "count": 25,
      "created_at": "2026-01-15T10:00:00Z"
    }
  ]
}