Twitter Replies Scraper avatar
Twitter Replies Scraper

Pricing

$4.99 / 1,000 results

Go to Store
Twitter Replies Scraper

Twitter Replies Scraper

Developed by

PowerAI

PowerAI

Maintained by Community

Fetch the latest replies to any tweet on Twitter, with auto-pagination and detailed reply info. Supports up to your specified maxResults.

5.0 (1)

Pricing

$4.99 / 1,000 results

1

Total users

18

Monthly users

18

Runs succeeded

92%

Last modified

25 days ago

🐦 Twitter Replies Scraper

This actor allows you to fetch the latest replies to a specific tweet on Twitter. It uses the latest Twitter API interface and supports automatic pagination to collect up to the number of replies you specify.

Features

  • Fetches the latest replies to a specific tweet.
  • Supports automatic pagination to retrieve large lists.
  • Allows you to specify the maximum number of results (maxResults).
  • Returns detailed information for each reply.

Input

  • id (string, required): The ID of the tweet whose replies you want to fetch.
  • maxResults (integer, optional): Maximum number of replies to fetch. Default is 18.

Output

The output is an array of reply objects, each containing:

  • tweet_id
  • screen_name
  • favorites
  • created_at
  • text
  • lang
  • source
  • quotes
  • replies
  • retweets
  • views
  • entities
  • user_info
  • media
  • in_reply_to_screen_name
  • in_reply_to_status_id_str
  • in_reply_to_user_id_str

Example Input

{
"id": "1738106896777699464",
"maxResults": 18
}

Example Output

[
{
"type": "tweet",
"tweet_id": "1920034606201327781",
"screen_name": "YvonneClem46448",
"bookmarks": 0,
"favorites": 0,
"created_at": "Wed May 07 08:34:57 +0000 2025",
"text": "@elonmusk Wow! Wow! Wow! Love to watch.",
"lang": "en",
"source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
"quotes": 0,
"replies": 0,
"conversation_id": "1738106896777699464",
"retweets": 0,
"views": "4",
"entities": {
"hashtags": [],
"symbols": [],
"timestamps": [],
"urls": [],
"user_mentions": [
{
"id_str": "44196397",
"name": "Elon Musk",
"screen_name": "elonmusk",
"indices": [
0,
9
]
}
]
},
"user_info": {
"screen_name": "YvonneClem46448",
"name": "Yvonne Clement",
"created_at": "Thu Jul 11 05:50:09 +0000 2024",
"description": "",
"rest_id": "1811276501687365632",
"followers_count": 46,
"favourites_count": 13,
"avatar": "https://pbs.twimg.com/profile_images/1811276773990023168/ENcQplR9_normal.png",
"verified": false,
"friends_count": 21,
"location": null
},
"media": [],
"in_reply_to_screen_name": "elonmusk",
"in_reply_to_status_id_str": "1738106896777699464",
"in_reply_to_user_id_str": "44196397",
"scrapedAt": "2025-05-30T02:42:00.064Z"
},
...
]

Notes

  • The actor will stop fetching once it reaches the specified maxResults or there are no more replies to fetch.
  • Make sure the target tweet is public and not protected.