Retrieve detailed information about a tracked source using either its external ID (eid) or internal ID (iid).
Parameters
The source type. Valid values: twitter, discord
Query Parameters
You can use either eid (external ID) or iid (internal ID) to identify the source:
External ID - the platform-specific identifier (e.g., Twitter user ID, Discord channel ID). Use this when you know the
source’s external identifier.
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
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"
}
}