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
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));{
"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"
}/v1/twitter/tweets/tweet/{tweet_id}/quotes| Parameter | Type | Required | Description |
|---|---|---|---|
tweet_id | string | Required | The tweet ID to get quote tweets for |
cursor | string | Optional | Pagination cursor for next page |
Monitor brand mentions, keywords, and conversations across Twitter in real time to understand public sentiment and emerging topics.
Get alerts when your brand is mentioned, track share of voice, and respond quickly to customer feedback or PR crises.
Feed tweet text into NLP pipelines to classify sentiment, detect emotions, and measure public opinion on products, events, or topics.
Track how news stories propagate on Twitter, measure story amplification, and identify key distributors of information.
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.
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.
Sign up for free and get 1,000 API credits instantly. No credit card required.