Get the quote tweets for a specific tweet. Returns the full content and engagement metrics for each quote tweet. Supports pagination.
curl "https://apidirect.io/v1/twitter/tweet/quotes?tweet_id=1631781099415257088&pages=1" \
-H "X-API-Key: YOUR_API_KEY"
{
"quotes": [
{
"title": "@quoter on X",
"url": "https://twitter.com/quoter/status/...",
"date": "2024-01-16 10:00:00",
"author": "quoter",
"source": "Twitter (X)",
"domain": "x.com",
"snippet": "This is so true! Great point here.",
"likes": 200,
"retweets": 50,
"replies": 10,
"quotes": 2,
"bookmarks": 30,
"views": 15000,
"author_followers": 8000,
"author_verified": false,
"lang": "en",
"is_reply": false,
"is_quote": true,
"hashtags": [],
"user_mentions": [],
"sentiment": {
"emotions": {
"joy": 40,
"trust": 55,
"fear": 0,
"surprise": 10,
"sadness": 0,
"disgust": 0,
"anger": 0,
"anticipation": 30
},
"dominant_emotion": "trust",
"emotional_intensity": 5,
"polarity": "positive"
}
}
],
"tweet_id": "1631781099415257088",
"pages": 1,
"count": 20
}