Get the complete list of users who retweeted a tweet with full profile data. Analyze retweet patterns, identify amplifiers, and measure reach.
Average response time: 95ms
const response = await fetch(
'https://scrapebadger.com/v1/twitter/tweets/tweet/1234567890/retweeters',
{ headers: { 'x-api-key': 'YOUR_API_KEY' } }
);
const data = await response.json();
data.data.forEach(user => console.log(user.username, user.followers_count));{
"data": [
{ "id": "111", "username": "alice", "name": "Alice", "followers_count": 5200 },
{ "id": "222", "username": "bob", "name": "Bob", "followers_count": 12400 }
],
"next_cursor": "abc123"
}/v1/twitter/tweets/tweet/{tweet_id}/retweeters| Parameter | Type | Required | Description |
|---|---|---|---|
tweet_id | string | Required | The tweet ID to get retweeters for |
cursor | string | Optional | Pagination cursor for next page |
Identify and vet influencers by analyzing follower quality, engagement rates, audience demographics, and content authenticity.
Identify automated accounts and inauthentic behavior by analyzing posting patterns, account metadata, and network structures.
Profile your audience by analyzing follower demographics, interests, activity patterns, and engagement behavior.
Track how news stories propagate on Twitter, measure story amplification, and identify key distributors of information.
Track competitor accounts, engagement rates, and content strategies to benchmark performance and identify opportunities.
Monitor follower growth, engagement trends, and content performance over time to optimize your Twitter strategy.
The API returns retweeters in reverse chronological order. Use cursor-based pagination to retrieve the full list.
No. This endpoint returns only direct retweeters. Use the Get Tweet Quotes endpoint for quote tweets.
Each retweeter includes user ID, username, display name, bio, follower/following counts, verified status, and profile image.
Analyze account age, follower ratios, default profile images, and posting frequency. Bulk retweeters with low followers are often bots.
Sign up for free and get 1,000 API credits instantly. No credit card required.