Skip to main content
POST
/
tweet
Tweet
curl --request POST \
  --url https://api.warmyourx.com/tweet \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'text=<string>' \
  --data 'cookies=<string>' \
  --data 'proxy=<string>' \
  --data 'tweet_url=<string>'
{
  "tweet_id": "<string>",
  "tweet_url": "<string>",
  "status": "posted",
  "reply_to_tweet_id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/x-www-form-urlencoded
text
string
required

Text content for the tweet.

cookies
string
required

Raw Cookie header value copied from the browser session.

proxy
string | null

Optional per-request proxy URL (overrides X_DEFAULT_PROXY from the environment when set). Example: http://user:pass@host:port

tweet_url
string | null

Optional tweet link or numeric tweet ID to reply to.

Response

Successful Response

tweet_id
string
required
tweet_url
string
required
status
enum<string>
required

Final action status after the request completed.

Available options:
posted,
replied
reply_to_tweet_id
string | null