DELETE
/
twitter
/
tweets
/
{tweet_id}
/
like
Unlike a Tweet
curl --request DELETE \
  --url https://api.twitterxapi.com/twitter/tweets/{tweet_id}/like \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "cookie": "ct0=abc123... or 2c4a4e1832096aa694c739b83c83b6d96d43eba7"
}'
{
  "code": 200,
  "msg": "success",
  "data": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tweet_id
string
required

The ID of the tweet to delete.

Body

application/json

Response

200
application/json

A confirmation of the action's success.

Tweet action response