POST
/
twitter
/
action
Purchase Twitter Engagement Services
curl --request POST \
  --url https://api.twitterxapi.com/twitter/action \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "service": "likes",
  "link": "https://twitter.com/username/status/1234567890",
  "quantity": 100
}'
{
  "code": 200,
  "msg": "success",
  "data": {
    "order_id": 12345
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Returns order ID and confirmation details for tracking your purchase

The response is of type object.