GETusers

Get All User Articles from Twitter

Retrieve all long-form articles published by a specific Twitter user. Ideal for content analysis, curation, and competitive research.

Average response time: 80ms

Code Examples

const response = await fetch(
  'https://scrapebadger.com/v1/twitter/users/44196397/articles',
  { headers: { 'x-api-key': 'YOUR_API_KEY' } }
);
const articles = await response.json();
articles.data.forEach(a => console.log(a.title));
Response
{
  "data": [
    { "id": "art_001", "title": "My Thoughts on AI", "created_at": "2025-01-05T10:00:00Z" },
    { "id": "art_002", "title": "Building in Public", "created_at": "2025-01-12T08:00:00Z" }
  ],
  "next_cursor": "article_cursor"
}

API Reference

GET/v1/twitter/users/{user_id}/articles
ParameterTypeRequiredDescription
user_idstringRequiredThe numeric user ID to get articles for
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.

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.

Market Research

Analyze consumer conversations, product feedback, and market trends to inform product development and go-to-market strategies.

Influencer Research

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

Frequently Asked Questions

No. Articles are only available for users who have published long-form content on Twitter.

This endpoint returns article metadata. Use the Get Article endpoint with the article ID to get the full body text.

Yes. Use cursor-based pagination to retrieve all articles from prolific authors.

Absolutely. Monitor competitor articles, track industry thought leadership, and curate long-form content.