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

Authorizations

X-API-Key
string
header
required

Your API key

Body

application/json
tweet_text
string
required

The text content of the tweet

Twitter auth cookie

proxy
string
required

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

reply_to_tweet_id
string

Tweet ID to reply to

Response

Tweet created

status
string

Response status

Example:

"success"

msg
string

Response message

data
any

Response data