GETlists

Scrape List Tweets from Any List

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

Code Examples

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));
Response
{
  "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"
}

API Reference

GET/v1/twitter/lists/{list_id}/tweets
ParameterTypeRequiredDescription
list_idstringRequiredThe numeric Twitter list ID
cursorstringOptionalPagination cursor for next page

Use Cases

Content Curation

Aggregate top-performing content by topic or industry to fuel newsletters, social feeds, and content marketing calendars.

Social Listening

Monitor brand mentions, keywords, and conversations across Twitter in real time to understand public sentiment and emerging topics.

Trend Tracking

Detect emerging trends, viral content, and breaking news before they peak using real-time trending topic data.

Competitor Analysis

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

Academic Research

Collect large-scale Twitter datasets for computational social science, NLP research, political analysis, and network studies.

Media Monitoring

Track how news stories propagate on Twitter, measure story amplification, and identify key distributors of information.

Frequently Asked Questions

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.