GETtweets

Extract Twitter Articles and Long-Form Posts

Retrieve full Twitter Articles (long-form content) including title, body text, embedded media, and author information.

Average response time: 85ms

Code Examples

const response = await fetch(
  'https://scrapebadger.com/v1/twitter/tweets/article/art_123456',
  { headers: { 'x-api-key': 'YOUR_API_KEY' } }
);
const article = await response.json();
console.log(article.data.title, article.data.body);
Response
{
  "data": {
    "id": "art_123456",
    "title": "The Future of Web Scraping",
    "body": "Long-form article content here...",
    "author": { "username": "writer", "name": "Tech Writer" },
    "created_at": "2025-01-10T08:00:00Z"
  }
}

API Reference

GET/v1/twitter/tweets/article/{article_id}
ParameterTypeRequiredDescription
article_idstringRequiredThe article ID to retrieve

Use Cases

Content Curation

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

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.

Social Listening

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

Competitor Analysis

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

Frequently Asked Questions

Twitter Articles are long-form posts (formerly Twitter Notes) that allow users to write content exceeding the character limit with rich formatting.

Yes, any publicly published article can be retrieved by its ID.

Yes. Embedded images in the article body are included as URLs in the response.

Article IDs appear in tweet data when a tweet links to an article. You can also find them via the Get User Articles endpoint.