> ## 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.

# Get Tracked Source

> Retrieve information about a specific tracked source by its internal ID

Retrieve detailed information about a tracked source using its internal ID.

## Parameters

<ParamField path="id" type="string" required>
  The Scrapest internal source ID (cuid). You can obtain this from tracking
  responses, list endpoints, or the `/tracked` endpoint.
</ParamField>

## Response

<ResponseField name="data" type="object">
  The tracked source information including id, externalId, username, name,
  source type, and timestamps.
</ResponseField>

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

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": {
      "id": "cmnv51j74000101l64lesiwpd",
      "source": "X",
      "externalId": "903870624124342274",
      "username": "elonmusk",
      "name": "Elon Musk",
      "createdAt": "2024-01-15T10:30:00.000Z",
      "updatedAt": "2024-04-02T15:45:00.000Z"
    }
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "message": "Tracked source not found"
  }
  ```
</ResponseExample>
