Skip to main content
DELETE
/
x
/
tweets
/
{id}
Delete tweet
curl --request DELETE \
  --url https://api.example.com/x/tweets/{id} \
  --header 'Content-Type: <content-type>' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "account": "<string>"
}
'
10 credits per call · All plans from $0.00012/credit
curl -X DELETE https://xquik.com/api/v1/x/tweets/1895432178065391234 \
  -H "x-api-key: xq_YOUR_KEY_HERE" \
  -H "Content-Type: application/json" \
  -d '{
    "account": "elonmusk"
  }' | jq

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported. Generate a key from the dashboard.
Content-Type
string
required
Must be application/json.

Path parameters

id
string
required
The ID of the tweet to delete. Must be a tweet owned by the specified connected account.

Body

account
string
required
X username or account ID identifying which connected X account owns the tweet. The @ prefix is automatically stripped if included.

Response

success
boolean
Always true on success.
{
  "success": true
}
Related: Create Tweet to post a new tweet, Like or Retweet to engage with tweets.