## Delete Watchlist Item **delete** `/v1/watchlists/{watchlist_id}/items/{item_id}` Delete an instrument from a watchlist ### Path Parameters - `watchlist_id: string` - `item_id: string` ### Example ```http curl https://api.clearstreet.com/v1/watchlists/$WATCHLIST_ID/items/$ITEM_ID \ -X DELETE \ -H "Authorization: Bearer $API_KEY" ``` #### Response ```json { "data": null, "metadata": { "request_id": "5b0709e3-5868-4116-9a84-26f1b8c30503" } } ```