GET
/
twitter
/
action
/
order-status
Check Order Status
curl --request GET \
  --url https://api.twitterxapi.com/twitter/action/order-status \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "msg": "success",
  "data": {
    "fee": 1,
    "order_id": 12345,
    "start_count": 0,
    "status": "completed"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

order_id
integer
required

Response

200
application/json

Detailed status information including progress, cost, and delivery status

The response is of type object.