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"
}
]
}
Get all user watchlists
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"
}
]
}
Bearer <access_token>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"
}
]
}