Skip to Content

DELETE /api/v1/watchlist/:id

Remove a single item from a watchlist.

Authentication: Required

Cache: None

Path Parameters

ParameterTypeRequiredDescription
idnumberYesWatchlist 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

StatusCodeDescription
403FORBIDDENEntry belongs to another user
404NOT_FOUNDWatchlist entry not found
Last updated on