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

Get retweeters

GET/twitter/tweet/retweeters18 credits

List the users who retweeted 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

usersarray
Array of user profile objects.
has_next_pageboolean
Whether another page of results is available.
next_cursorstring
Cursor for the next page; null or empty when exhausted.
Request
curl https://v2.xapis.dev/twitter/tweet/retweeters \
  -G --data-urlencode "tweetId=2074521451474895265" \
  -H "x-api-key: $XAPIS_KEY"
Response200 OK
application/json
{
  "users": [
    {
      "id": "1685300197109235712",
      "name": "kernowprince",
      "userName": "kernowmonster",
      "location": "",
      "url": "",
      "description": "",
      "protected": false,
      "verified": false,
      "followers": 293,
      "following": 361,
      "favouritesCount": 115983,
      "statusesCount": 38361,
      "mediaCount": 0,
      "createdAt": "2023-07-29T14:44:41.000000Z",
      "coverPicture": "",
      "profilePicture": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png",
      "canDm": false
    }
  ],
  "has_next_page": true,
  "next_cursor": "SEJhQWdJREc5NmlIOURNQUFBPT0="
}
base url · https://v2.xapis.dev
Ready to call Get retweeters?