DELETE /api/v1/watchlist/:id
Remove a single item from a watchlist.
Authentication: Required
Cache: None
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | number | Yes | Watchlist entry ID |
Sample Request
curl -X DELETE -H "Authorization: Bearer YOUR_TOKEN" \
"https://api.grails.app/api/v1/watchlist/1"Response
// 200 OK
{
"success": true,
"data": {
"message": "Removed from watchlist"
},
"meta": {
"timestamp": "2026-04-08T00:00:00.000Z",
"version": "1.0.0"
}
}Error Responses
| Status | Code | Description |
|---|---|---|
| 403 | FORBIDDEN | Entry belongs to another user |
| 404 | NOT_FOUND | Watchlist entry not found |
Last updated on