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

# Send Tweet V3

> V3 Send Tweet API - Send a tweet using your username. This is an asynchronous method that queues your tweet for posting. You must have logged in via user_login_v3 first. Supports text, images, GIFs, and videos. Trial operation price: $0.003 per call.



## OpenAPI

````yaml POST /twitter/send_tweet_v3
openapi: 3.0.1
info:
  title: TwitterAPI.io the most stable/fastest/cheapest twitter api.
  description: Provide the most stable/fastest/cheapest twitter api.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.twitterapi.io
security:
  - ApiKeyAuth: []
paths:
  /twitter/send_tweet_v3:
    post:
      description: >-
        V3 Send Tweet API - Send a tweet using your username. This is an
        asynchronous method that queues your tweet for posting. You must have
        logged in via user_login_v3 first. Supports text, images, GIFs, and
        videos. Trial operation price: $0.003 per call.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - user_name
                - text
              properties:
                user_name:
                  type: string
                  description: >-
                    Twitter username. Must be set. The user must have been
                    logged in via user_login_v3.
                text:
                  type: string
                  description: The text content of the tweet. Must be set.
                media_data_base64:
                  type: string
                  description: >-
                    Optional. Base64 encoded media data for images, GIFs, or
                    videos.
                media_type:
                  type: string
                  description: >-
                    Optional. The MIME type of the media. Supported types:
                    image/jpeg, image/png, image/gif, video/mp4
                community_id:
                  type: string
                  description: Optional. The ID of the community to post the tweet to.
      responses:
        '200':
          description: Tweet send response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: >-
                      Status of the request. 'success' means the tweet has been
                      queued for posting.
                  msg:
                    type: string
                    description: Message describing the result or error details.
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````