X API

Get thread context 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

Response

Thread tweets

has_next_pageboolean required
next_cursorstring required

Example response

{
  "tweets": [
    {
      "id": "1234567890",
      "text": "Just launched our new feature!"
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAACCgACGRElMJcAAA"
}

Changes