# Add items
curl -X POST "https://api.finscreener.in/api/watchlist/wl_123/entities" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"action": "add",
"items": ["U72200MH2004PTC148441"]
}'
# Remove items
curl -X POST "https://api.finscreener.in/api/watchlist/wl_123/entities" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"action": "remove",
"items": ["U72200MH2004PTC148441"]
}'
{
"message": "1 item(s) added successfully",
"count": 26
}
Add or remove entities from watchlist
# Add items
curl -X POST "https://api.finscreener.in/api/watchlist/wl_123/entities" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"action": "add",
"items": ["U72200MH2004PTC148441"]
}'
# Remove items
curl -X POST "https://api.finscreener.in/api/watchlist/wl_123/entities" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"action": "remove",
"items": ["U72200MH2004PTC148441"]
}'
{
"message": "1 item(s) added successfully",
"count": 26
}
Bearer <access_token>add or remove# Add items
curl -X POST "https://api.finscreener.in/api/watchlist/wl_123/entities" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"action": "add",
"items": ["U72200MH2004PTC148441"]
}'
# Remove items
curl -X POST "https://api.finscreener.in/api/watchlist/wl_123/entities" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"action": "remove",
"items": ["U72200MH2004PTC148441"]
}'
{
"message": "1 item(s) added successfully",
"count": 26
}