Skip to main content
GET
https://api.aisa.one/apis/v1
/
twitter
/
tweet
/
replies
/
v2
Get Tweet Replies V2
curl --request GET \
  --url https://api.aisa.one/apis/v1/twitter/tweet/replies/v2 \
  --header 'Authorization: Bearer <token>'
{
  "replies": [
    {
      "type": "<string>",
      "id": "<string>",
      "url": "<string>",
      "text": "<string>",
      "source": "<string>",
      "retweetCount": 123,
      "replyCount": 123,
      "likeCount": 123,
      "quoteCount": 123,
      "viewCount": 123,
      "createdAt": "<string>",
      "lang": "<string>",
      "bookmarkCount": 123,
      "isReply": true,
      "inReplyToId": "<string>",
      "conversationId": "<string>",
      "inReplyToUserId": "<string>",
      "inReplyToUsername": "<string>",
      "isLimitedReply": true
    }
  ],
  "has_next_page": true,
  "next_cursor": "<string>",
  "status": "success",
  "message": "<string>"
}

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

replies
object[]

Array of reply tweets

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"

message
string

Error message if status is error