Skip to main content
DELETE
https://scrape.st
/
track-user
curl -X DELETE https://scrape.st/track-user \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{ "username": "elonmusk" }'
{
  "message": "Stopped tracking user elonmusk"
}
Stop tracking a user.
Smart Untracking: This endpoint implements smart untracking. The user will only be unfollowed on Twitter if no other API key is currently tracking them. Use with confidence.
x-api-key
string
required
Your unique API key.
username
string
required
The Twitter handle of the user to stop tracking.
curl -X DELETE https://scrape.st/track-user \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{ "username": "elonmusk" }'
{
  "message": "Stopped tracking user elonmusk"
}