Skip to main content
POST
/
twitter
/
retweet_v3
cURL
curl --request POST \
  --url https://api.twitterapi.io/twitter/retweet_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 retweet. Must be set.

Response

Retweet response

status
string

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

msg
string

Message describing the result.