Skip to main content
POST
/
follow
/
{user_id}
Follow
curl --request POST \
  --url https://api.warmyourx.com/follow/{user_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'cookies=<string>' \
  --data 'proxy=<string>'
{
  "user_id": "<string>",
  "status": "followed"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

user_id
string
required

Target account as numeric ID, GraphQL user token, @username, or x.com profile URL.

Body

application/x-www-form-urlencoded
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

Response

Successful Response

user_id
string
required
status
enum<string>
required

Final action status after the request completed.

Available options:
followed,
already_following