Skip to main content
POST
/
twitter
/
like_tweet_v3
cURL
curl --request POST \
  --url https://api.twitterapi.io/twitter/like_tweet_v3 \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "user_name": "<string>",
  "tweet_id": "<string>"
}
'
{
  "status": "<string>",
  "msg": "<string>"
}

Authorizations

X-API-Key
string
header
required

Body

application/json
user_name
string
required

Twitter username. Must be set. The user must have been logged in via user_login_v3.

tweet_id
string
required

The ID of the tweet to like. Must be set.

Response

Like tweet response

status
string

Status of the request. 'success' means the tweet has been liked.

msg
string

Message describing the result, e.g., 'Tweet liked successfully.'