Skip to main content
GET
/
track
/
:source
# Using external ID (eid)
curl -X GET "https://scrape.st/track/twitter?eid=4124454" \
  -H "x-api-key: YOUR_API_KEY"

# Using internal ID (iid)
curl -X GET "https://scrape.st/track/twitter?iid=src_123" \
  -H "x-api-key: YOUR_API_KEY"
{
  "data": {
    "id": "src_123",
    "source": "TWITTER",
    "externalId": "4124454",
    "username": "elonmusk",
    "name": "Elon Musk",
    "createdAt": "2024-01-15T10:30:00.000Z",
    "updatedAt": "2024-04-02T15:45:00.000Z"
  }
}
Retrieve detailed information about a tracked source using either its external ID (eid) or internal ID (iid).

Parameters

source
string
required
The source type. Valid values: twitter, discord

Query Parameters

You can use either eid (external ID) or iid (internal ID) to identify the source:
eid
string
External ID - the platform-specific identifier (e.g., Twitter user ID, Discord channel ID). Use this when you know the source’s external identifier.
iid
string
Internal ID - the Scrapest internal source ID (UUID). Use this when you have the internal ID from a previous API response.
You must provide either eid or iid as a query parameter, but not both. Use eid when you know the external identifier, or iid when you have the internal UUID from a previous tracking response.

Response

data
object
The tracked source information including id, externalId, username, name, and source type
# Using external ID (eid)
curl -X GET "https://scrape.st/track/twitter?eid=4124454" \
  -H "x-api-key: YOUR_API_KEY"

# Using internal ID (iid)
curl -X GET "https://scrape.st/track/twitter?iid=src_123" \
  -H "x-api-key: YOUR_API_KEY"
{
  "data": {
    "id": "src_123",
    "source": "TWITTER",
    "externalId": "4124454",
    "username": "elonmusk",
    "name": "Elon Musk",
    "createdAt": "2024-01-15T10:30:00.000Z",
    "updatedAt": "2024-04-02T15:45:00.000Z"
  }
}