Twitter Tweet Replies API - Get Tweet Replies
FetchLayer fetchlayer.dev Sign in

Fetch replies for a tweet

Retrieve reply tweets and continuation cursors for a specific tweet. Each reply includes the same fields as a tweet result.

POST /tweet-replies Content
https://api.fetchlayer.dev/twitter/tweet-replies
OpenAPI JSON

Headers

Authorization string required

Bearer token — your FetchLayer API key.

Parameters

tweetId string required

Tweet ID.

screenName string optional

Optional screen name context.

cursor string optional

Pagination cursor.

Response Fields

tweet-replies

Fetch replies for a tweet

replies[].id string

Reply tweet ID.

replies[].text string

Reply text.

replies[].author.handle string

Author handle.

replies[].author.displayName string

Author display name.

replies[].createdAt string

ISO 8601 timestamp.

replies[].likeCount number

Like count.

replies[].retweetCount number

Retweet count.

replies[].replyCount number

Nested reply count.

cursor string

Pagination cursor for next page.

Request

curl -X POST "https://api.fetchlayer.dev/twitter/tweet-replies" \
  -H "Authorization: Bearer ss-your-key" \
  -H "Content-Type: application/json" \
  -d '{"tweetId":"1942939879222220800"}'

Response

{
  "replies": [
    {
      "id": "1942941234567890000",
      "text": "Absolutely. I used it to analyze a full Next.js project structure and it caught a race condition I missed.",
      "author": {
        "handle": "reactdev",
        "displayName": "React Dev",
        "isVerified": false
      },
      "createdAt": "2026-07-01T19:05:00.000Z",
      "likeCount": 28,
      "retweetCount": 2,
      "replyCount": 5
    },
    {
      "id": "1942942345678900000",
      "text": "How does it compare to Claude Computer Use for those kinds of tasks?",
      "author": {
        "handle": "ai_researcher",
        "displayName": "AI Researcher",
        "isVerified": false
      },
      "createdAt": "2026-07-01T19:12:00.000Z",
      "likeCount": 12,
      "retweetCount": 0,
      "replyCount": 8
    }
  ],
  "cursor": "DAABCgABF8zK9v__-W9"
}