Skip to main content
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
service
enum<string>
required

Type of engagement service to purchase

Available options:
likes,
retweets,
views,
bookmarks,
followers
Example:

"likes"

Full Twitter/X URL of the tweet or profile to boost

Example:

"https://twitter.com/username/status/1234567890"

quantity
integer
required

Number of engagements to purchase (see service limits in endpoint description)

Required range: x > 0
Example:

100

Response

Returns order ID and confirmation details for tracking your purchase

code
integer
required

HTTP status code (200 for success)

Example:

200

msg
string
required

Human-readable response message

Example:

"success"

data
object
required

Order details including order_id for tracking

Example:
{ "order_id": 12345 }