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

# List quote tweets of a tweet



## OpenAPI

````yaml /openapi.json post /x/get-tweet-quotes
openapi: 3.1.0
info:
  title: Bridgly API
  description: >-
    Web scraping API for LinkedIn, X (Twitter) and Reddit. Authenticated
    endpoints accept a Bridgly API key (`bgly_…`) via `Authorization: Bearer
    <token>`.
  version: 1.0.0
servers:
  - url: https://api.bridgly.app
    description: Production
security: []
tags:
  - name: LinkedIn
    description: Scrape LinkedIn profiles, companies, posts, and search.
  - name: Reddit
    description: Scrape Reddit posts, subreddits, users, and search.
  - name: X (Twitter)
    description: Scrape tweets and search X.
paths:
  /x/get-tweet-quotes:
    post:
      tags:
        - X (Twitter)
      summary: List quote tweets of a tweet
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                tweetId:
                  type: string
                  description: >-
                    Numeric ID of the tweet whose quote tweets to list, e.g.
                    "1234567890".
                count:
                  default: 10
                  description: Number of quote tweets to return (1–10). Defaults to 10.
                  type: integer
                  minimum: 1
                  maximum: 10
                sortOrder:
                  type: string
                  enum:
                    - Latest
                    - Top
                  description: >-
                    Result ordering: "Latest" = chronological newest-first
                    (default), "Top" = X's engagement ranking.
              required:
                - tweetId
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  timeMs:
                    type: number
                    description: >-
                      Wall-clock time the request took to complete, in
                      milliseconds.
                  creditsCost:
                    type: number
                    description: Number of account credits this request consumed.
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Numeric tweet ID
                        url:
                          type: string
                          description: >-
                            Canonical tweet URL e.g.
                            "https://x.com/elonmusk/status/123"
                        text:
                          type: string
                          description: Full text of the tweet
                        createdAt:
                          description: When the tweet was posted
                          type: string
                          format: date-time
                        createdAtEpochMs:
                          type: number
                          description: >-
                            When the tweet was posted, as a Unix epoch in
                            milliseconds
                        source:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            Client app the tweet was posted from e.g. "Twitter
                            for iPhone"
                        conversationId:
                          type: string
                          description: ID of the root tweet in this thread
                        replyCount:
                          type: number
                        retweetCount:
                          type: number
                        likeCount:
                          type: number
                        quoteCount:
                          type: number
                        bookmarkCount:
                          anyOf:
                            - type: number
                            - type: 'null'
                        viewCount:
                          anyOf:
                            - type: number
                            - type: 'null'
                        replyToTweetId:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Parent tweet ID if this is a reply
                        replyToUserId:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Author of the parent tweet
                        replyToUsername:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Handle of the parent tweet author if this is a reply
                        replyToTweetUrl:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Canonical URL of the parent tweet if this is a reply
                        isQuote:
                          type: boolean
                          description: Whether this tweet quotes another tweet
                        quotedTweetId:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            ID of the quoted tweet — resolve via the tweet
                            endpoint
                        quotedTweetUrl:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Canonical URL of the quoted tweet
                        quotedTweetAuthorId:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Numeric user ID of the quoted tweet author
                        quotedTweetAuthorUsername:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Handle of the quoted tweet author
                        lang:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Language code e.g. "en"
                        isSensitive:
                          type: boolean
                        hashtags:
                          type: array
                          items:
                            type: string
                          description: 'Hashtag text without the # symbol'
                        mentions:
                          type: array
                          items:
                            type: object
                            properties:
                              userId:
                                type: string
                              username:
                                type: string
                              displayName:
                                type: string
                              profileUrl:
                                type: string
                                description: Canonical profile URL of the mentioned user
                            required:
                              - userId
                              - username
                              - displayName
                              - profileUrl
                            additionalProperties: false
                        urls:
                          type: array
                          items:
                            type: object
                            properties:
                              shortUrl:
                                type: string
                                description: t.co short URL as it appears in the text
                              expandedUrl:
                                type: string
                                description: The actual destination URL
                              displayUrl:
                                type: string
                                description: Human-readable label e.g. "github.com/..."
                            required:
                              - shortUrl
                              - expandedUrl
                              - displayUrl
                            additionalProperties: false
                        media:
                          type: array
                          items:
                            type: object
                            properties:
                              type:
                                type: string
                                enum:
                                  - photo
                                  - video
                                  - animated_gif
                              url:
                                type: string
                                description: >-
                                  Preview / thumbnail image URL
                                  (media_url_https)
                              mediaKey:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                                description: Stable media identifier (media_key)
                              mediaId:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                                description: >-
                                  Numeric media ID (id_str) — stable identifier
                                  of the media item
                              width:
                                anyOf:
                                  - type: number
                                  - type: 'null'
                                description: >-
                                  Native pixel width of the media; null when
                                  unknown
                              height:
                                anyOf:
                                  - type: number
                                  - type: 'null'
                                description: >-
                                  Native pixel height of the media; null when
                                  unknown
                              expandedUrl:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                                description: Canonical URL of this media on the tweet
                              videoUrl:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                                description: >-
                                  Highest-quality MP4 URL for video / GIF media;
                                  null for photos
                              durationMs:
                                anyOf:
                                  - type: number
                                  - type: 'null'
                                description: >-
                                  Video / GIF duration in milliseconds; null for
                                  photos
                            required:
                              - type
                              - url
                              - mediaKey
                              - mediaId
                              - width
                              - height
                              - expandedUrl
                              - videoUrl
                              - durationMs
                            additionalProperties: false
                        authorId:
                          type: string
                          description: >-
                            Numeric author user ID (rest_id) — resolve via the
                            user endpoint
                        authorHandle:
                          type: string
                          description: Author username without @
                        authorName:
                          type: string
                          description: Author display name
                        authorUrl:
                          type: string
                          description: >-
                            Canonical author profile URL e.g.
                            "https://x.com/elonmusk"
                        authorIsVerified:
                          type: boolean
                          description: Legacy verified badge
                        authorIsBlueVerified:
                          type: boolean
                          description: X Premium (blue) verified
                      required:
                        - id
                        - url
                        - text
                        - createdAt
                        - createdAtEpochMs
                        - source
                        - conversationId
                        - replyCount
                        - retweetCount
                        - likeCount
                        - quoteCount
                        - bookmarkCount
                        - viewCount
                        - replyToTweetId
                        - replyToUserId
                        - replyToUsername
                        - replyToTweetUrl
                        - isQuote
                        - quotedTweetId
                        - quotedTweetUrl
                        - quotedTweetAuthorId
                        - quotedTweetAuthorUsername
                        - lang
                        - isSensitive
                        - hashtags
                        - mentions
                        - urls
                        - media
                        - authorId
                        - authorHandle
                        - authorName
                        - authorUrl
                        - authorIsVerified
                        - authorIsBlueVerified
                      additionalProperties: false
                required:
                  - timeMs
                  - creditsCost
                  - data
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '402':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
      security:
        - bearerAuth: []
      x-codeSamples:
        - lang: typescript
          label: Bridgly SDK
          source: |-
            import { Bridgly } from 'bridgly';

            const client = new Bridgly({ apiKey: process.env.BRIDGLY_API_KEY });

            const res = await client.x.getTweetQuotes({
              tweetId: "string",
              count: 10,
            });
            if (res.type === 'success') console.log(res.data);
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A Bridgly API key (`bgly_…`). Metered endpoints deduct credits from the
        resolved account.

````