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.
Authorization
bearerAuth Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.
In: header
Query Parameters
Numeric ID of the parent tweet.
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"}Tweet Detail GET
Resolve a tweet ID into its complete object, including author, engagement counts, attached media, and any quoted tweet. The starting point for any single-tweet workflow. Cost: $0.0008 per call.
Tweet Retweeters GET
Fetch the users who retweeted a given tweet, cursor-paginated. Useful for amplification analysis and identifying the accounts that spread a post. Cost: $0.0008 per call.