GETtweets

Get Users Who Liked Any Tweet

Retrieve the complete list of users who liked a tweet. Analyze engagement patterns, identify your most engaged audience, and find potential leads.

Average response time: 90ms

Code Examples

const response = await fetch(
  'https://scrapebadger.com/v1/twitter/tweets/tweet/1234567890/favoriters',
  { headers: { 'x-api-key': 'YOUR_API_KEY' } }
);
const likers = await response.json();
likers.data.forEach(u => console.log(u.username, u.followers_count));
Response
{
  "data": [
    { "id": "333", "username": "fan1", "name": "Fan One", "followers_count": 890 },
    { "id": "444", "username": "fan2", "name": "Fan Two", "followers_count": 2300 }
  ],
  "next_cursor": "like_cursor_456"
}

API Reference

GET/v1/twitter/tweets/tweet/{tweet_id}/favoriters
ParameterTypeRequiredDescription
tweet_idstringRequiredThe tweet ID to get likers for
cursorstringOptionalPagination cursor for next page

Use Cases

Audience Analysis

Profile your audience by analyzing follower demographics, interests, activity patterns, and engagement behavior.

Influencer Research

Identify and vet influencers by analyzing follower quality, engagement rates, audience demographics, and content authenticity.

Lead Generation

Find potential customers by monitoring purchase-intent keywords, industry discussions, and competitor dissatisfaction signals.

Competitor Analysis

Track competitor accounts, engagement rates, and content strategies to benchmark performance and identify opportunities.

Growth Tracking

Monitor follower growth, engagement trends, and content performance over time to optimize your Twitter strategy.

Bot Detection

Identify automated accounts and inauthentic behavior by analyzing posting patterns, account metadata, and network structures.

Frequently Asked Questions

You can retrieve likers for any public tweet, not just your own. Private account likes are not accessible.

Use cursor-based pagination to retrieve all likers. Each page returns up to 100 users.

Yes. Twitter internally calls likes "favorites." The endpoint path uses "favoriters" but returns the same like data.

Absolutely. Users who like tweets about specific topics are warm leads. Combine with follower data to build targeted lists.