> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twexapi.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Check Order Status

> Check the delivery status and progress of your Twitter engagement order.

**Response Details:**
- **order_id**: Unique identifier for your order
- **start_count**: Initial engagement count when order began
- **fee**: Total cost of the order in USD
- **status**: Current order status (pending, in_progress, completed, failed)

**Order Status Types:**
- `pending`: Order received and queued for processing
- `in_progress`: Services are being delivered
- `completed`: All services have been delivered successfully
- `partial`: Some services delivered (may continue processing)
- `failed`: Order could not be completed (contact support)

**Note**: Orders are processed 24/7 but delivery speed varies by service type and current queue volume.



## OpenAPI

````yaml /api-reference/openapi.json get /twitter/action/order-status
openapi: 3.1.0
info:
  title: Twitter API Service
  description: |2-

            A comprehensive Twitter API service that provides various Twitter operations including:
            
            * **Search Operations**: Advanced search, hashtags, cashtags
            * **Tweet Operations**: Post, like, retweet, quote, bookmark, delete
            * **User Operations**: Batch user information retrieval
            * **Influencer Operations**: Get tweets from top influencers
            
            All endpoints return standardized responses in the format:
            ```json
            {
                "code": 200,
                "msg": "success", 
                "data": {...}
            }
            ```
            
            ## Authentication
            
            This API uses Bearer token authentication. Include your token in the Authorization header:
            ```
            Authorization: Bearer your_token_here
            ```
            
  contact:
    name: API Support
    email: support@twitterxapi.com
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.twexapi.io
    description: Development server
security: []
paths:
  /twitter/action/order-status:
    get:
      tags:
        - Social Media Services Endpoints
      summary: Check Order Status
      description: >-
        Check the delivery status and progress of your Twitter engagement order.


        **Response Details:**

        - **order_id**: Unique identifier for your order

        - **start_count**: Initial engagement count when order began

        - **fee**: Total cost of the order in USD

        - **status**: Current order status (pending, in_progress, completed,
        failed)


        **Order Status Types:**

        - `pending`: Order received and queued for processing

        - `in_progress`: Services are being delivered

        - `completed`: All services have been delivered successfully

        - `partial`: Some services delivered (may continue processing)

        - `failed`: Order could not be completed (contact support)


        **Note**: Orders are processed 24/7 but delivery speed varies by service
        type and current queue volume.
      operationId: get_order_status_twitter_action_order_status_get
      parameters:
        - name: order_id
          in: query
          required: true
          schema:
            type: integer
            title: Order Id
      responses:
        '200':
          description: >-
            Detailed status information including progress, cost, and delivery
            status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TwitterActionStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    TwitterActionStatusResponse:
      properties:
        code:
          type: integer
          title: Code
          description: HTTP status code (200 for success)
          example: 200
        msg:
          type: string
          title: Msg
          description: Human-readable response message
          example: success
        data:
          additionalProperties: true
          type: object
          title: Data
          description: Order status details including progress and delivery information
          example:
            fee: 1
            order_id: 12345
            start_count: 0
            status: completed
      type: object
      required:
        - code
        - msg
        - data
      title: TwitterActionStatusResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````