> ## 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.

# Purchase Twitter Engagement Services

> Purchase various Twitter engagement services to boost your social media presence.

**Available Services:**
- **Likes**: Increase tweet likes (10-5,000 per order, $1/100)
- **Retweets**: Boost retweets (10-500 per order, $2/100)  
- **Views**: Enhance tweet views (100-9999999 per order, $1/1000)
- **Bookmarks**: Add bookmarks (10-5000 per order, $2/100)
- **Followers**: Gain followers (10-30,000 per order, $2/100)

**How it works:**
1. Submit your order with service type, tweet URL, and quantity
2. Receive an order ID to track your purchase
3. Monitor progress via the status endpoint
4. Services are delivered gradually over time for natural growth

**Important Notes:**
- All services are delivered by real accounts
- Processing time varies by service type and quantity
- Orders cannot be cancelled once processing begins
- Ensure your Twitter account is public for optimal delivery



## OpenAPI

````yaml /api-reference/openapi.json post /twitter/action
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:
    post:
      tags:
        - Social Media Services Endpoints
      summary: Purchase Twitter Engagement Services
      description: >-
        Purchase various Twitter engagement services to boost your social media
        presence.


        **Available Services:**

        - **Likes**: Increase tweet likes (10-5,000 per order, $1/100)

        - **Retweets**: Boost retweets (10-500 per order, $2/100)  

        - **Views**: Enhance tweet views (100-9999999 per order, $1/1000)

        - **Bookmarks**: Add bookmarks (10-5000 per order, $2/100)

        - **Followers**: Gain followers (10-30,000 per order, $2/100)


        **How it works:**

        1. Submit your order with service type, tweet URL, and quantity

        2. Receive an order ID to track your purchase

        3. Monitor progress via the status endpoint

        4. Services are delivered gradually over time for natural growth


        **Important Notes:**

        - All services are delivered by real accounts

        - Processing time varies by service type and quantity

        - Orders cannot be cancelled once processing begins

        - Ensure your Twitter account is public for optimal delivery
      operationId: execute_twitter_action_twitter_action_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PurchaseTwitterActionRequest'
        required: true
      responses:
        '200':
          description: Returns order ID and confirmation details for tracking your purchase
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PurchaseTwitterActionResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    PurchaseTwitterActionRequest:
      properties:
        service:
          type: string
          enum:
            - likes
            - retweets
            - views
            - bookmarks
            - followers
          title: Service
          description: Type of engagement service to purchase
          example: likes
        link:
          type: string
          title: Link
          description: Full Twitter/X URL of the tweet or profile to boost
          example: https://twitter.com/username/status/1234567890
        quantity:
          type: integer
          exclusiveMinimum: 0
          title: Quantity
          description: >-
            Number of engagements to purchase (see service limits in endpoint
            description)
          example: 100
      type: object
      required:
        - service
        - link
        - quantity
      title: PurchaseTwitterActionRequest
    PurchaseTwitterActionResponse:
      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 details including order_id for tracking
          example:
            order_id: 12345
      type: object
      required:
        - code
        - msg
        - data
      title: PurchaseTwitterActionResponse
    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

````