Retrieve all long-form articles published by a specific Twitter user. Ideal for content analysis, curation, and competitive research.
Average response time: 80ms
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));{
"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"
}/v1/twitter/users/{user_id}/articles| Parameter | Type | Required | Description |
|---|---|---|---|
user_id | string | Required | The numeric user ID to get articles for |
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.
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.
Analyze consumer conversations, product feedback, and market trends to inform product development and go-to-market strategies.
Identify and vet influencers by analyzing follower quality, engagement rates, audience demographics, and content authenticity.
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.
Sign up for free and get 1,000 API credits instantly. No credit card required.