Get all tweets from any Twitter Community. Filter by Top, Latest, or Media to find the most relevant community discussions.
Average response time: 90ms
const response = await fetch(
'https://scrapebadger.com/v1/twitter/communities/1234567890/tweets?tweet_type=Top',
{ headers: { 'x-api-key': 'YOUR_API_KEY' } }
);
const tweets = await response.json();
tweets.data.forEach(t => console.log(t.text, t.favorite_count));{
"data": [
{
"id": "comm_tweet_001",
"text": "Just published a new tutorial on React Server Components...",
"author": { "username": "webdev", "followers_count": 8000 },
"favorite_count": 156
}
],
"next_cursor": "comm_tweet_cursor"
}/v1/twitter/communities/{community_id}/tweets| Parameter | Type | Required | Description |
|---|---|---|---|
community_id | string | Required | The numeric community ID |
tweet_type | string | Optional | Filter type: "Top", "Latest", or "Media" |
cursor | string | Optional | Pagination cursor for next page |
Manage Twitter communities by tracking member activity, top contributors, discussion themes, and community health metrics.
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.
Collect large-scale Twitter datasets for computational social science, NLP research, political analysis, and network studies.
Aggregate top-performing content by topic or industry to fuel newsletters, social feeds, and content marketing calendars.
Analyze consumer conversations, product feedback, and market trends to inform product development and go-to-market strategies.
You can filter by "Top" (most engaged), "Latest" (chronological), or "Media" (tweets with images/videos).
Use the Search Communities endpoint to search for tweets matching specific keywords within communities.
Community timelines typically show recent activity. Use pagination to access older posts.
Yes. Communities are self-selected groups, making them valuable for studying specific interest groups.
Sign up for free and get 1,000 API credits instantly. No credit card required.