Skip to main content
POST
/
track
/
:source
curl -X POST https://scrape.st/track/x \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "sid": "elonmusk"
  }'
{
  "data": {
    "id": "src_123",
    "source": "X",
    "externalId": "elonmusk",
    "username": "elonmusk",
    "name": "Elon Musk"
  },
  "message": "Now tracking elonmusk on X"
}
Start tracking a specific source. The source can be an X user, Discord channel, Telegram group, website URL, or RSS feed.

Parameters

source
string
required
The source type to track. Valid values: x, discord, telegram, web, rss

Request Body

sid
string
required
Source ID - the unique identifier for the source. For X this is the username (without @), for Discord this is the channel ID, for Telegram this is the channel username or invite link, for Web/RSS this is the full URL.

Response

data
object
The tracked source information
message
string
Status message
curl -X POST https://scrape.st/track/x \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "sid": "elonmusk"
  }'
{
  "data": {
    "id": "src_123",
    "source": "X",
    "externalId": "elonmusk",
    "username": "elonmusk",
    "name": "Elon Musk"
  },
  "message": "Now tracking elonmusk on X"
}