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

Get tweet replies

GET/twitter/tweet/replies15 credits

Fetch the replies to a 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/replies \
  -G --data-urlencode "tweetId=2074521451474895265" \
  -H "x-api-key: $XAPIS_KEY"
Response200 OK
application/json
{
  "tweets": [
    {
      "type": "tweet",
      "id": "2074778993555890235",
      "url": "https://x.com/TiredOldand/status/2074778993555890235",
      "twitterUrl": "https://twitter.com/TiredOldand/status/2074778993555890235",
      "text": "@elonmusk Because we have no media just propagandist. Have for a long time.",
      "source": "Twitter for iPhone",
      "retweetCount": 0,
      "replyCount": 0,
      "likeCount": 0,
      "quoteCount": 0,
      "viewCount": 4,
      "createdAt": "Wed Jul 08 08:53:54 +0000 2026",
      "lang": "en",
      "bookmarkCount": 0,
      "isReply": true,
      "inReplyToId": "2074521451474895265",
      "conversationId": "2074521451474895265",
      "displayTextRange": [
        10
      ],
      "inReplyToUserId": "44196397",
      "inReplyToUsername": "elonmusk",
      "author": {
        "type": "user",
        "userName": "TiredOldand",
        "url": "https://x.com/TiredOldand",
        "twitterUrl": "https://twitter.com/TiredOldand",
        "id": "1378114604711211013",
        "name": "Texas2024",
        "isVerified": false,
        "isBlueVerified": false,
        "verifiedType": null,
        "profilePicture": "https://pbs.twimg.com/profile_images/1378147613174865921/ir2Ynehd_normal.jpg",
        "coverPicture": "",
        "description": "",
        "location": "77351",
        "followers": 567,
        "following": 1197,
        "status": "",
        "canDm": true,
        "canMediaTag": true,
        "createdAt": "Fri Apr 02 22:38:39 +0000 2021",
        "entities": {
          "description": "…",
          "url": "…"
        },
        "fastFollowersCount": 0,
        "favouritesCount": 26395,
        "hasCustomTimelines": true,
        "isTranslator": false,
        "…": "…"
      },
      "extendedEntities": {},
      "card": null,
      "place": {},
      "…": "…"
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAADDAABCgABHMsYgIJXYDsKAAIcyxPcWpfQzgAIAAIAAAACCAADAAAAAAgABAAAAAAKAAUcyxjZGwAnEAoABhzLGNka_9jwAAA",
  "status": "success",
  "msg": "success"
}
base url · https://v2.xapis.dev
Ready to call Get tweet replies?