Skip to main content
POST
/
track-discord
curl -X POST https://scrape.st/track-discord \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{ "channelId": "987654321098765432" }'
{
  "message": "Now tracking Discord channel 987654321098765432",
  "data": {
    "id": "987654321098765432"
  }
}
Start tracking a Discord channel. Scrapest will deliver new messages from this channel to your registered webhook and WebSocket stream.
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 track.

Response

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