POST
/
twitter
/
post_tweet_without_cookie
curl --request POST \
  --url https://api.twitterxapi.com/twitter/post_tweet_without_cookie \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "media_url": "https://example.com/image.jpg",
  "tweet_content": "Hello, Twitter! 🐦",
  "schedule": "2024-01-01T12:00:00Z",
  "reply_tweet_id": "1234567890123456789",
  "community_name": "Python Developers",
  "quote_tweet_url": "https://twitter.com/user/status/1234567890123456789"
}'
{
  "code": 200,
  "msg": "success",
  "data": {
    "tweet_id": "1234567890123456789",
    "user_id": "1234567890"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Parameters for posting a tweet without providing cookie (uses random cookie from pool)

Response

200
application/json

Tweet ID and user ID of posted tweet

Post tweet API response