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

# Get Tweet Replies V2

> Get tweet replies by tweet ID with support for sorting by Relevance, Latest, or Likes.



## OpenAPI

````yaml openapi/twitter-tweet-replies-v2.json GET /twitter/tweet/replies/v2
openapi: 3.0.3
info:
  title: Twitter API - Tweet Replies V2
  version: 1.0.0
  description: Get tweet replies with advanced sorting options.
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - BearerAuth: []
paths:
  /twitter/tweet/replies/v2:
    get:
      tags:
        - https://docs.twitterapi.io/api-reference/endpoint/get_tweet_replies_v2
      summary: Get Tweet Replies V2
      description: >-
        Get tweet replies by tweet ID (V2). Each page returns up to 20 replies.
        Supports sorting by Relevance, Latest, or Likes.
      parameters:
        - name: tweetId
          in: query
          required: true
          schema:
            type: string
          description: The tweet ID to get replies for. e.g. 1846987139428634858
        - name: cursor
          in: query
          required: false
          schema:
            type: string
          description: >-
            Cursor for paginating through results. Leave empty for the first
            page.
        - name: queryType
          in: query
          required: false
          schema:
            type: string
            enum:
              - Relevance
              - Latest
              - Likes
            default: Relevance
          description: Sort order for replies. Default is Relevance.
      responses:
        '200':
          description: Tweet replies response
          content:
            application/json:
              schema:
                type: object
                properties:
                  replies:
                    type: array
                    items:
                      $ref: '#/components/schemas/Tweet'
                    description: Array of reply tweets
                  has_next_page:
                    type: boolean
                    description: Indicates if there are more results available
                  next_cursor:
                    type: string
                    description: Cursor for fetching the next page of results
                  status:
                    type: string
                    enum:
                      - success
                      - error
                    example: success
                    description: Status of the request
                  message:
                    type: string
                    description: Error message if status is error
components:
  schemas:
    Tweet:
      type: object
      properties:
        type:
          type: string
        id:
          type: string
          description: The ID of the tweet
        url:
          type: string
          description: The URL of the tweet
        text:
          type: string
          description: The text of the tweet
        source:
          type: string
          description: The source client of the tweet
        retweetCount:
          type: integer
        replyCount:
          type: integer
        likeCount:
          type: integer
        quoteCount:
          type: integer
        viewCount:
          type: integer
        createdAt:
          type: string
          description: The date and time the tweet was created
        lang:
          type: string
          description: The language of the tweet
        bookmarkCount:
          type: integer
        isReply:
          type: boolean
        inReplyToId:
          type: string
        conversationId:
          type: string
        inReplyToUserId:
          type: string
        inReplyToUsername:
          type: string
        isLimitedReply:
          type: boolean
          description: Whether the tweet is a limited reply
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````