> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrape.st/llms.txt
> Use this file to discover all available pages before exploring further.

# List All Tracked

> Retrieve all tracked sources 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

<ResponseField name="data" type="array">
  Array of tracked source objects across all platforms
</ResponseField>

<ResponseField name="data[].id" type="string">
  Unique tracking record ID
</ResponseField>

<ResponseField name="data[].source" type="string">
  Platform source type (`X`, `TELEGRAM`, `DISCORD`, `WEB`, `RSS`)
</ResponseField>

<ResponseField name="data[].externalId" type="string">
  Platform-specific identifier for the source
</ResponseField>

<ResponseField name="data[].username" type="string">
  Username or handle of the tracked source
</ResponseField>

<ResponseField name="data[].name" type="string">
  Display name of the tracked source
</ResponseField>

<ResponseField name="data[].trackedAt" type="string">
  ISO 8601 timestamp of when tracking was created
</ResponseField>

<ResponseField name="message" type="string">
  Status message with total count
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X GET https://scrape.st/tracked \
    -H "x-api-key: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "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"
  }
  ```
</ResponseExample>
