Tweets
Get full conversation thread for a tweet
get/x/tweets/{id}/thread
Path parameters
idstring required
Tweet ID to get thread context
Query parameters
cursorstring
Pagination cursor for thread tweets
pageSizeinteger
Maximum items requested from this page (1-100, default 20). The response can contain fewer items because the source returned fewer, filters removed items, or remaining credits cover fewer results. Keep requesting next_cursor while has_next_page is true, even when a page is empty. The deprecated limit and count aliases remain accepted.
Response
Thread tweets
Example response
{
"tweets": [
{
"id": "1234567890",
"text": "Just launched our new feature!",
"retweetCount": 5,
"replyCount": 3,
"likeCount": 42,
"quoteCount": 1,
"viewCount": 1500,
"bookmarkCount": 2
}
],
"has_next_page": true,
"next_cursor": "DAACCgACGRElMJcAAA"
}