xAPIs.dev
API Reference · v2
Free Tools{ }OpenAPI YAMLGet API key
API Reference / Tweet / Get tweet quotes

Get tweet quotes

GET/twitter/tweet/quotes15 credits

Fetch quote tweets of a given tweet. Cursor-paginated. The sample response below is captured from the live API. List endpoints paginate with `has_next_page` and `next_cursor`.

Authentication required
Send your key in the x-api-key header. Requests without a valid key return 401.

Query parameters

tweetId
stringrequired
The numeric ID of the tweet.
cursor
stringoptional
Pagination cursor for the next page.

Response fields

tweetsarray
Array of tweet objects with engagement metrics and author info.
has_next_pageboolean
Whether another page of results is available.
next_cursorstring
Cursor for the next page; null or empty when exhausted.
statusstring
Request status: "success" or "error".
msgstring
Status message from the upstream.
Request
curl https://v2.xapis.dev/twitter/tweet/quotes \
  -G --data-urlencode "tweetId=2074521451474895265" \
  -H "x-api-key: $XAPIS_KEY"
Response200 OK
application/json
{
  "tweets": [
    {
      "type": "tweet",
      "id": "2074770296767496346",
      "url": "https://x.com/AmandaLee93451/status/2074770296767496346",
      "twitterUrl": "https://twitter.com/AmandaLee93451/status/2074770296767496346",
      "text": "Media cannot be trusted and go to the top of the chain. Theres the cause",
      "source": "Twitter for iPhone",
      "retweetCount": 0,
      "replyCount": 0,
      "likeCount": 0,
      "quoteCount": 0,
      "viewCount": 0,
      "createdAt": "Wed Jul 08 08:19:20 +0000 2026",
      "lang": "en",
      "bookmarkCount": 0,
      "isReply": false,
      "inReplyToId": null,
      "conversationId": "2074770296767496346",
      "displayTextRange": [
        0
      ],
      "inReplyToUserId": null,
      "inReplyToUsername": null,
      "author": {
        "type": "user",
        "userName": "AmandaLee93451",
        "url": "https://x.com/AmandaLee93451",
        "twitterUrl": "https://twitter.com/AmandaLee93451",
        "id": "1829771946168631298",
        "name": "Mandzz",
        "isVerified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "profilePicture": "https://pbs.twimg.com/profile_images/2058301621101371392/yLPG8l4s_normal.jpg",
        "coverPicture": "",
        "description": "",
        "location": "Darwin, Northern Territory",
        "followers": 40,
        "following": 30,
        "status": "",
        "canDm": false,
        "canMediaTag": true,
        "createdAt": "Sat Aug 31 06:44:51 +0000 2024",
        "entities": {
          "description": "…",
          "url": "…"
        },
        "fastFollowersCount": 0,
        "favouritesCount": 488,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "…": "…"
      },
      "extendedEntities": {},
      "card": null,
      "place": {},
      "…": "…"
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAADDAABCgABHMsQl6FbwJoKAAIcysgaVJaAxAAIAAIAAAACCAADAAAAAAgABAAAAAAKAAUcyxjbKcAnEAoABhzLGNspv9jwAAA",
  "status": "success",
  "msg": "success"
}
base url · https://v2.xapis.dev
Ready to call Get tweet quotes?