# Using internal ID (iid)
curl -X DELETE https://scrape.st/track/x \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"iid": "src_123"
}'
# Using external ID (eid)
curl -X DELETE https://scrape.st/track/x \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"eid": "1444232"
}'
{
"data": {
"id": "src_123",
"source": "X",
"externalId": "1444232",
"username": "elonmusk",
"name": "Elon Musk"
},
"message": "Stopped tracking elonmusk on X"
}
Tracking
Delete Tracking
Stop tracking a source
DELETE
/
track
/
:source
# Using internal ID (iid)
curl -X DELETE https://scrape.st/track/x \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"iid": "src_123"
}'
# Using external ID (eid)
curl -X DELETE https://scrape.st/track/x \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"eid": "1444232"
}'
{
"data": {
"id": "src_123",
"source": "X",
"externalId": "1444232",
"username": "elonmusk",
"name": "Elon Musk"
},
"message": "Stopped tracking elonmusk on X"
}
Stop tracking a specific source.
Parameters
string
required
The source type. Valid values:
x, discordRequest Body
You can use eithereid (external ID) or iid (internal ID) to identify the source to stop tracking:
string
External ID - the platform-specific identifier (e.g., X user ID, Discord
server/guild ID). Use this when you know the source’s external identifier.
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, but not both. Use eid when you know
the external identifier (like a X handle), or iid when you have the internal
UUID from a previous tracking response.Response
object
The untracked source information
string
Status message
# Using internal ID (iid)
curl -X DELETE https://scrape.st/track/x \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"iid": "src_123"
}'
# Using external ID (eid)
curl -X DELETE https://scrape.st/track/x \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"eid": "1444232"
}'
{
"data": {
"id": "src_123",
"source": "X",
"externalId": "1444232",
"username": "elonmusk",
"name": "Elon Musk"
},
"message": "Stopped tracking elonmusk on X"
}