POST
/
twitter
/
create_tweet_v2
cURL
curl --request POST \
  --url https://api.twitterapi.io/twitter/create_tweet_v2 \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "login_cookie": "<string>",
  "tweet_text": "<string>",
  "reply_to_tweet_id": "<string>",
  "community_id": "<string>",
  "is_note_tweet": true,
  "media_ids": [
    "<any>"
  ],
  "proxy": "<string>"
}'
{
  "tweet_id": "<string>",
  "status": "<string>",
  "msg": "<string>"
}

Authorizations

X-API-Key
string
header
required

Body

application/json

Response

200
application/json

Login response

The response is of type object.