Skip to main content
POST
/
v1
/
tweets
/
create
Create Tweet
curl --request POST \
  --url https://api.warmyourx.com/v1/tweets/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'text=<string>' \
  --data 'cookies=<string>' \
  --data 'proxy=<string>' \
  --data 'reply_to=<string>' \
  --data 'quote=<string>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

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
cookies
string
required

Raw Cookie header value.

proxy
string | null

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

reply_to
string | null
quote
string | null

Response

Successful Response