I want to get all the 'retweets with comments' of a tweet.
Here are few things I noticed with twitter api
- Retweets with comments are treated as tweets. The retweet count does not increase if you add a comment, also the twitter message is "XYZ quoted you instead retweeted you'
- You clearly can't use this API endpoint https://dev.twitter.com/rest/reference/post/statuses/retweet/:id
Is there a way to find all the 'tweet/retweet with comment' if you can supply the original Tweet/Id?
So you're referring to Quoted Tweets (retweet with comments). There is no official method for that from the REST API yet, however, there are couple of ways to do it.
in_reply_to_status_idand filter by short url of the original tweetquoted_status_idthis can be done either through REST or STREAMING API.