Skip to content
Prepaid, no subscription trap. Top up a balance and we draw the monthly fee from it.
tcggraph

Delete a price watch

Stop watching.

DELETEhttps://api.tcggraph.com/v1/watches/{id}No credits · metering

Path parameters

ParameterTypeDescription
idrequiredstringThe watch's id.

Response

200 Confirmation.

FieldTypeDescription
dataobjectWhat was deleted.
data.idstringThe watch's id.
data.deletedbooleanAlways true.

Examples

Real responses from the production API, recorded on 2026-09-24 by the script that also checks every field above against them. Arrays are shown in full.

Delete it

curl -X DELETE "https://api.tcggraph.com/v1/watches/c245e388-33da-446a-89b1-b6afc908cf05" \
  -H "Authorization: Bearer $TCGGRAPH_API_KEY"
200 · X-Credits-Cost: 0
{
  "data": {
    "id": "c245e388-33da-446a-89b1-b6afc908cf05",
    "deleted": true
  }
}

Errors

Every error has the same body; switch on error.code. Any endpoint can also answer 401, 402, 403 or 429 for reasons of key, plan or rate; those are on Errors.

StatusCodeWhen
404not_foundNo watch with that id on this account.

Already deleted

curl -X DELETE "https://api.tcggraph.com/v1/watches/c245e388-33da-446a-89b1-b6afc908cf05" \
  -H "Authorization: Bearer $TCGGRAPH_API_KEY"
404
{
  "error": {
    "code": "not_found",
    "message": "No price watch with id \"c245e388-33da-446a-89b1-b6afc908cf05\"."
  }
}