Today, we’re launching the Quote Tweets lookup endpoint to the Twitter API v2 which gives developers and researchers the ability to get the Quote Tweets for a Tweet. This endpoint, which is only available on the Twitter API v2, is particularly helpful for researchers looking to study the entire conversation and context around a Tweet - including all replies to it and all Quote Tweets of it. Below is an example of a Quote Tweet:
Getting started
In order to get started with these endpoints, you need to make sure you have a Twitter developer account. Once you have access, you can use the quick start guide available for the Quote Tweets lookup endpoint. We also have code samples available in Python, Ruby, JavaScript & Java. in our TwitterDev Github repository to help you get started quickly. Just add the appropriate bearer token from your app to the code samples in order to connect to these endpoints.
Try a live request 
A sample request and response for the Quote Tweets lookup endpoint looks like:
Request (cURL)
curl --request GET 'https://api.twitter.com/2/tweets/1409931481552543749/quote_tweets' --header 'Authorization: Bearer XXXXX'
Response:
{
"data": [
{
"id": "1495979553889697792",
"text": "RT @chris_bail: Twitter has created an entire course (with videos, code, and other materials) to help researchers learn how to collect data…"
},
{
"id": "1486385372401737728",
"text": "RT @suhemparack: Super excited to share our course on Getting started with the #TwitterAPI v2 for academic research\n\nIf you know students w…"
},
{
"id": "1480954678447857669",
"text": "RT @suhemparack: Super excited to share our course on Getting started with the #TwitterAPI v2 for academic research\n\nIf you know students w…"
},
{
"id": "1480639272721940486",
"text": "RT @suhemparack: Super excited to share our course on Getting started with the #TwitterAPI v2 for academic research\n\nIf you know students w…"
},
{
"id": "1471614967207976961",
"text": "RT @chris_bail: Twitter has created an entire course (with videos, code, and other materials) to help researchers learn how to collect data…"
},
{
"id": "1470423243513372679",
"text": "RT @suhemparack: Super excited to share our course on Getting started with the #TwitterAPI v2 for academic research\n\nIf you know students w…"
},
{
"id": "1469125403373568001",
"text": "RT @suhemparack: Super excited to share our course on Getting started with the #TwitterAPI v2 for academic research\n\nIf you know students w…"
},
{
"id": "1468633446935318529",
"text": "RT @suhemparack: Super excited to share our course on Getting started with the #TwitterAPI v2 for academic research\n\nIf you know students w…"
},
{
"id": "1438256410417143809",
"text": "RT @suhemparack: Super excited to share our course on Getting started with the #TwitterAPI v2 for academic research\n\nIf you know students w…"
},
{
"id": "1430934381829492746",
"text": "RT @suhemparack: Super excited to share our course on Getting started with the #TwitterAPI v2 for academic research\n\nIf you know students w…"
}
],
"meta": {
"result_count": 10,
"next_token": "avdjwk0udyx6"
}
}
Note: By default, only 10 Tweets are returned for a request, and using the max_results parameter you can get upto 100 Tweets per request. If you want additional Tweets, you can use the next_token value to paginate. Learn more about pagination here.
If you use Python, you can try out the Quote Tweet endpoint using the Twarc and Tweepy libraries that support this endpoint.
We hope that developers and researchers will find value with this new endpoint. If you have questions about this endpoint, feel free to ask in our Twitter community forums.