Skip to content
GET/tweet/retweeters$0.0008 / call

Tweet Retweeters

Fetch the users who retweeted a given tweet, cursor-paginated. Useful for amplification analysis and identifying the accounts that spread a post.

Request

curl "https://api.twitterapis.com/tweet/retweeters?tweet_id=1759123456789012345" \
  -H "Authorization: Bearer $TWITTERAPIS_KEY"

Parameters

ParameterTypeRequiredDescription
tweet_idstringrequired

Numeric ID of the tweet.

Example: 1759123456789012345

cursorstringoptional

Pagination cursor from a previous response.

Response

FieldTypeDescription
usersarray<User>

Users who retweeted, for this page.

has_next_pageboolean

True when more results are available; pass next_cursor to fetch them.

next_cursorstring

Opaque cursor token for the next page. Empty string on the final page.

statusstring

Request status, "success" on a normal response.

Example response

{
  "users": [
    {
      "id": "9921",
      "username": "devjane",
      "name": "Jane",
      "followers_count": 4200,
      "is_blue_verified": false
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAABCgABF...",
  "status": "success"
}

Pricing for this endpoint

tweet/retweeters costs $0.0008 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.

Related endpoints