TwitterAPIs Docs
API ReferenceTweet Details

Tweet Replies

Fetch the direct replies to a given tweet, cursor-paginated. Combine with Tweet Detail to reconstruct a discussion or measure reply sentiment. Cost: $0.0008 per call.

GET
/tweet/replies

Authorization

bearerAuth
AuthorizationBearer <token>

Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.

In: header

Query Parameters

tweet_id*string

Numeric ID of the parent tweet.

cursor?string

Pagination cursor from a previous response.

Response Body

application/json

curl -X GET "https://example.com/tweet/replies?tweet_id=1759123456789012345"
{  "replies": [    {      "id": "1759123999000111222",      "text": "Congrats on the launch!",      "created_at": "Tue Feb 20 14:30:02 +0000 2026",      "author": {        "id": "9921",        "username": "devjane",        "name": "Jane"      },      "like_count": 12,      "reply_count": 1    }  ],  "has_next_page": true,  "next_cursor": "DAABCgABF...",  "status": "success"}