Skip to content
GET/tweet/replies$0.0008 / call

Tweet Replies

Fetch the direct replies to a given tweet, cursor-paginated. Combine with Tweet Detail to reconstruct a discussion or measure reply sentiment.

Request

curl "https://api.twitterapis.com/tweet/replies?tweet_id=1759123456789012345" \
  -H "Authorization: Bearer $TWITTERAPIS_KEY"

Parameters

ParameterTypeRequiredDescription
tweet_idstringrequired

Numeric ID of the parent tweet.

Example: 1759123456789012345

cursorstringoptional

Pagination cursor from a previous response.

Response

FieldTypeDescription
repliesarray<Tweet>

Reply tweets for this page.

has_next_pageboolean

True when more results are available; pass next_cursor to fetch them.

next_cursorstring

Opaque cursor token for the next page. Empty string on the final page.

statusstring

Request status, "success" on a normal response.

Example response

{
  "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"
}

Pricing for this endpoint

tweet/replies costs $0.0008 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.

Related endpoints