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
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));{
"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"
}/v1/twitter/tweets/tweet/{tweet_id}/favoriters| Parameter | Type | Required | Description |
|---|---|---|---|
tweet_id | string | Required | The tweet ID to get likers for |
cursor | string | Optional | Pagination cursor for next page |
Profile your audience by analyzing follower demographics, interests, activity patterns, and engagement behavior.
Identify and vet influencers by analyzing follower quality, engagement rates, audience demographics, and content authenticity.
Find potential customers by monitoring purchase-intent keywords, industry discussions, and competitor dissatisfaction signals.
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.
Identify automated accounts and inauthentic behavior by analyzing posting patterns, account metadata, and network structures.
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.
Sign up for free and get 1,000 API credits instantly. No credit card required.