Skip to main content
POST
/
twitter
/
tweets
/
{tweet_id}
/
like
Like Tweet
curl --request POST \
  --url https://api.apitwitter.com/twitter/tweets/{tweet_id}/like \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "cookie": "<string>",
  "proxy": "<string>"
}
'
{
  "status": "success",
  "msg": "Tweet liked"
}

Authorizations

X-API-Key
string
header
required

Your API key

Path Parameters

tweet_id
string
required

ID of the tweet to like

Body

application/json

Twitter auth cookie

proxy
string
required

Proxy URL to use for the request (HTTP or SOCKS5)

Response

Tweet liked

status
string

Response status

Example:

"success"

msg
string

Response message

data
any

Response data