curl https://scrape.st/x/profile-watch \
-H "x-api-key: YOUR_API_KEY"
{
"data": [
{
"username": "elonmusk",
"userId": "44196397",
"lastPfpUrl": "https://pbs.twimg.com/profile_images/456/new_400x400.jpg",
"createdAt": "2026-07-05T10:00:00.000Z"
}
],
"message": "Profile watches retrieved successfully"
}
Profile Tracking
List Profile Watches
List the X accounts your API key watches for profile changes
GET
/
x
/
profile-watch
curl https://scrape.st/x/profile-watch \
-H "x-api-key: YOUR_API_KEY"
{
"data": [
{
"username": "elonmusk",
"userId": "44196397",
"lastPfpUrl": "https://pbs.twimg.com/profile_images/456/new_400x400.jpg",
"createdAt": "2026-07-05T10:00:00.000Z"
}
],
"message": "Profile watches retrieved successfully"
}
Returns the profile watches registered for the calling API key.
Response
object[]
Watches with
username, userId, lastPfpUrl (last observed avatar, null
until first poll), and createdAt.string
Status message describing the result
curl https://scrape.st/x/profile-watch \
-H "x-api-key: YOUR_API_KEY"
{
"data": [
{
"username": "elonmusk",
"userId": "44196397",
"lastPfpUrl": "https://pbs.twimg.com/profile_images/456/new_400x400.jpg",
"createdAt": "2026-07-05T10:00:00.000Z"
}
],
"message": "Profile watches retrieved successfully"
}