Skip to main content
DELETE
/
api
/
key
/
watched
Remove tracked accounts
curl --request DELETE \
  --url 'https://www.utrack.club/api/key/watched?key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "identifier": "elonmusk,@twitter",
  "type": "username",
  "key": "your-api-key-here"
}
'
{
  "success": true,
  "message": "Processed 2 identifiers: 2 successful, 0 failed",
  "results": {
    "successful": [
      {
        "identifier": "elonmusk",
        "message": "Successfully removed tracked account for username elonmusk"
      }
    ],
    "failed": []
  }
}

Authorizations

key
string
query
required

Your API key. Get your API key from the dashboard.

Body

application/json
identifier
string
required

Comma-separated list of Twitter usernames (with or without @) or Twitter IDs. Maximum 1000 characters.

Example:

"elonmusk,44196397,@twitter"

type
enum<string>
required

Specify whether the identifier is a username or ID

Available options:
username,
id
key
string
required

Your API key

Response

Successfully removed at least one account

success
boolean
required

True if at least one account was successfully deleted

message
string
required

Summary message

results
object
required