GETtweets

Extract All Quote Tweets for Any Tweet

Get every quote tweet with the quoter's commentary, profile data, and engagement stats. Understand how your content is being discussed and reshared.

Average response time: 95ms

Code Examples

const response = await fetch(
  'https://scrapebadger.com/v1/twitter/tweets/tweet/1234567890/quotes',
  { headers: { 'x-api-key': 'YOUR_API_KEY' } }
);
const quotes = await response.json();
quotes.data.forEach(q => console.log(q.author.username, q.text));
Response
{
  "data": [
    {
      "id": "777",
      "text": "This is exactly what we needed! Great work.",
      "author": { "username": "commenter", "followers_count": 1500 },
      "favorite_count": 12
    }
  ],
  "next_cursor": "quote_cursor_789"
}

API Reference

GET/v1/twitter/tweets/tweet/{tweet_id}/quotes
ParameterTypeRequiredDescription
tweet_idstringRequiredThe tweet ID to get quote tweets for
cursorstringOptionalPagination cursor for next page

Use Cases

Social Listening

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

Brand Monitoring

Get alerts when your brand is mentioned, track share of voice, and respond quickly to customer feedback or PR crises.

Sentiment Analysis

Feed tweet text into NLP pipelines to classify sentiment, detect emotions, and measure public opinion on products, events, or topics.

Media Monitoring

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

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.

Frequently Asked Questions

Retweets share the original tweet as-is. Quote tweets add the quoter's own commentary on top of the original tweet.

Yes. Each quote tweet has its own ID. Call this endpoint on a quote tweet to get quotes of quotes.

Very. Quote tweets contain original commentary that reflects the quoter's opinion, making them ideal for sentiment analysis.

All available quote tweets are accessible through pagination. There is no time limit.