Skip to main content
DELETE
/
track-discord
curl -X DELETE https://scrape.st/track-discord \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{ "channelId": "987654321098765432" }'
{
  "message": "Stopped tracking Discord channel 987654321098765432",
  "data": {
    "id": "987654321098765432"
  }
}
Stop tracking a Discord channel. You will no longer receive updates for this channel.
This endpoint requires authentication. You must provide the x-api-key header.
x-api-key
string
required
Your unique API key.
channelId
string
required
The unique ID of the Discord channel to stop tracking.

Response

message
string
Confirmation message.
data
object
Contains the untracked channel ID.
{
  "message": "Stopped tracking Discord channel 987654321098765432",
  "data": {
    "id": "987654321098765432"
  }
}
curl -X DELETE https://scrape.st/track-discord \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{ "channelId": "987654321098765432" }'