Skip to main content
POST
Get Replies by Page (Recommended)

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tweet_id
string
required

The ID of the tweet to get replies for.

Example:

"1803006263529541838"

Body

application/json
next_cursor
string | null

Cursor returned by the previous page. Leave empty to fetch the first page.

sort_by
enum<string>
default:Recency

Sort replies by Relevance, Recency, or Likes.

Available options:
Relevance,
Recency,
Likes
Example:

"Recency"

Response

Current page replies, optional root_tweet on first page, and pagination metadata.

data
TweetModel · object[]
required

Replies on the current page.

has_next_page
boolean
required

Whether another page is available.

code
integer
default:200

HTTP status code

msg
string
default:success

Response message

root_tweet
TweetModel · object | null

The focal tweet. Only present on the first page (when next_cursor is omitted).

next_cursor
string | null

Use this cursor to fetch the next page when has_next_page is true.