curl -X GET "https://api.finscreener.in/api/watchlist/wl_123/entities?page=1&limit=10" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
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()
{
"entities": [
{
"CIN": "U72200MH2004PTC148441",
"companyName": "TATA CONSULTANCY SERVICES LIMITED",
"City": "Mumbai",
"llpStatus": "Active"
}
],
"total": 25,
"page": 1,
"limit": 10
}
Watchlist
Get Watchlist Entities
Get entities in a watchlist with pagination
GET
/
api
/
watchlist
/
{watchlist_id}
/
entities
curl -X GET "https://api.finscreener.in/api/watchlist/wl_123/entities?page=1&limit=10" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
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()
{
"entities": [
{
"CIN": "U72200MH2004PTC148441",
"companyName": "TATA CONSULTANCY SERVICES LIMITED",
"City": "Mumbai",
"llpStatus": "Active"
}
],
"total": 25,
"page": 1,
"limit": 10
}
Retrieve entities in a watchlist with pagination and optional search.
Path Parameters
string
required
Watchlist ID
Headers
string
required
Bearer token:
Bearer <access_token>Query Parameters
number
default:"1"
Page number
number
default:"10"
Items per page (max: 100)
string
Search entities within the watchlist by name
curl -X GET "https://api.finscreener.in/api/watchlist/wl_123/entities?page=1&limit=10" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
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()
{
"entities": [
{
"CIN": "U72200MH2004PTC148441",
"companyName": "TATA CONSULTANCY SERVICES LIMITED",
"City": "Mumbai",
"llpStatus": "Active"
}
],
"total": 25,
"page": 1,
"limit": 10
}