Get all tweets from any Twitter list timeline. Lists are curated feeds — perfect for monitoring specific topics, industries, or groups of accounts.
Average response time: 90ms
const response = await fetch(
'https://scrapebadger.com/v1/twitter/lists/1234567/tweets',
{ headers: { 'x-api-key': 'YOUR_API_KEY' } }
);
const tweets = await response.json();
tweets.data.forEach(t => console.log(t.author.username, t.text));{
"data": [
{
"id": "list_tweet_001",
"text": "New paper on transformer architectures...",
"author": { "username": "researcher", "followers_count": 45000 },
"favorite_count": 230
}
],
"next_cursor": "list_tweet_cursor"
}/v1/twitter/lists/{list_id}/tweets| Parameter | Type | Required | Description |
|---|---|---|---|
list_id | string | Required | The numeric Twitter list ID |
cursor | string | Optional | Pagination cursor for next page |
Aggregate top-performing content by topic or industry to fuel newsletters, social feeds, and content marketing calendars.
Monitor brand mentions, keywords, and conversations across Twitter in real time to understand public sentiment and emerging topics.
Detect emerging trends, viral content, and breaking news before they peak using real-time trending topic data.
Track competitor accounts, engagement rates, and content strategies to benchmark performance and identify opportunities.
Collect large-scale Twitter datasets for computational social science, NLP research, political analysis, and network studies.
Track how news stories propagate on Twitter, measure story amplification, and identify key distributors of information.
Yes, any public list. Private list tweets are not accessible.
List timelines typically contain the last 7-14 days of tweets from list members.
Yes. The list timeline includes original tweets, retweets, and replies from list members.
Absolutely. Follow industry-specific lists to monitor conversations without the noise of a general feed.
Sign up for free and get 1,000 API credits instantly. No credit card required.