Skip to main content
GET
/
tracked
curl -X GET https://scrape.st/tracked \
  -H "x-api-key: YOUR_API_KEY"
{
  "data": [
    {
      "id": "cmnv51j74000101l64lesiwpd",
      "source": "X",
      "externalId": "903870624124342274",
      "username": "elonmusk",
      "name": "Elon Musk",
      "trackedAt": "2026-05-24T03:24:02.608Z"
    },
    {
      "id": "cmpj8q11a000001s01wzvwbdy",
      "source": "TELEGRAM",
      "externalId": "-1001234567890",
      "username": "crypto_signals",
      "name": "Crypto Signals",
      "trackedAt": "2026-05-24T03:51:18.582Z"
    }
  ],
  "message": "2 sources tracked across all platforms"
}
Retrieve all tracked sources across all platforms (X, Telegram, Discord, Web, RSS) for the calling API key. This is a cross-platform view — equivalent to calling GET /track/:source for each source type.

Response

data
array
Array of tracked source objects across all platforms
data[].id
string
Unique tracking record ID
data[].source
string
Platform source type (X, TELEGRAM, DISCORD, WEB, RSS)
data[].externalId
string
Platform-specific identifier for the source
data[].username
string
Username or handle of the tracked source
data[].name
string
Display name of the tracked source
data[].trackedAt
string
ISO 8601 timestamp of when tracking was created
message
string
Status message with total count
curl -X GET https://scrape.st/tracked \
  -H "x-api-key: YOUR_API_KEY"
{
  "data": [
    {
      "id": "cmnv51j74000101l64lesiwpd",
      "source": "X",
      "externalId": "903870624124342274",
      "username": "elonmusk",
      "name": "Elon Musk",
      "trackedAt": "2026-05-24T03:24:02.608Z"
    },
    {
      "id": "cmpj8q11a000001s01wzvwbdy",
      "source": "TELEGRAM",
      "externalId": "-1001234567890",
      "username": "crypto_signals",
      "name": "Crypto Signals",
      "trackedAt": "2026-05-24T03:51:18.582Z"
    }
  ],
  "message": "2 sources tracked across all platforms"
}