Skip to main content
GET
Get Tweet Replies V2
Get replies to a tweet with control over sort order — Relevance (default), Latest, or Likes — 20 per page, cursor-paginated. Use this instead of get_twitter_tweet_replies whenever ordering matters: Likes surfaces the community’s top responses, Latest gives a live view of an unfolding thread. Returns full tweet objects with engagement counts.
First time? Point any MCP client at https://mcp.aisa.one/mcp — Claude Code, Codex, Cursor, VS Code and the rest. Authorization is OAuth: the client opens a browser, you click Allow once, and there is no key to paste. The commands per client, and what each call costs, are on aisa.one/mcp.
Set this endpoint up in your agent →

Authorizations

Authorization
string
header
required

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

Query Parameters

tweetId
string
required

The tweet ID to get replies for. e.g. 1846987139428634858

cursor
string

Cursor for paginating through results. Leave empty for the first page.

queryType
enum<string>
default:Relevance

Sort order for replies. Default is Relevance.

Available options:
Relevance,
Latest,
Likes

Response

200 - application/json

Tweet replies response

has_next_page
boolean

Indicates if there are more results available

next_cursor
string

Cursor for fetching the next page of results

status
enum<string>

Status of the request

Available options:
success,
error
Example:

"success"

tweets
object[]

Array of reply tweets.

msg
string

Error message if status is error.