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

# Get tweet replies

> Get replies to a specific tweet.



## OpenAPI

````yaml /openapi-spec/xshot.yaml get /twitter/tweet/replies
openapi: 3.0.3
info:
  title: Xshot REST API
  version: 1.0.0
  description: >
    Twitter/X data API. Access user profiles, tweets, communities, lists,
    spaces, and trends.


    All endpoints require authentication via `api_key` query parameter,
    `x-api-key` header, or `Authorization: Bearer` header.
  contact:
    name: Xshot
    url: https://api.xshot.fun
servers:
  - url: https://api.xshot.fun
    description: Production
security:
  - ApiKeyQuery: []
  - ApiKeyHeader: []
  - BearerAuth: []
paths:
  /twitter/tweet/replies:
    get:
      tags:
        - Tweets
      summary: Get tweet replies
      description: Get replies to a specific tweet.
      operationId: getTweetReplies
      parameters:
        - name: tweet_id
          in: query
          required: true
          schema:
            type: string
        - name: cursor
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Paginated replies
          content:
            application/json:
              schema:
                type: object
                properties:
                  replies:
                    type: array
                    items:
                      $ref: '#/components/schemas/Tweet'
                  next_cursor:
                    type: string
                    nullable: true
                  has_next_page:
                    type: boolean
components:
  schemas:
    Tweet:
      type: object
      properties:
        id:
          type: string
          example: '2035548674483273831'
        text:
          type: string
        created_at:
          type: string
        author:
          type: object
          properties:
            id:
              type: string
            name:
              type: string
            username:
              type: string
            profile_image:
              type: string
            verified:
              type: boolean
            followers_count:
              type: integer
        retweet_count:
          type: integer
        reply_count:
          type: integer
        like_count:
          type: integer
        quote_count:
          type: integer
        bookmark_count:
          type: integer
        view_count:
          type: integer
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key
    ApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
    BearerAuth:
      type: http
      scheme: bearer

````