Get the replies to an X post
xcrap_get_repliesFetch direct replies to an X/Twitter post, sorted by most liked or newest, with the original post included. Shows what people are saying, providing author, timestamp, text, and metrics for each reply.
Instructions
Fetch the replies under an X/Twitter post, most liked first or newest first, with the post itself on top.
This is how you answer "what are people saying about this post", "what did the replies think" or "find the strongest pushback on this". Only direct replies come back — a reply to a reply belongs to its own conversation.
When to use this instead of the alternatives:
Use xcrap_get_tweet if you only need the post.
Use xcrap_get_thread for the author's own follow-up posts; replies by other people are not a thread.
Args:
url (string, required): the post's URL or bare numeric id.
sort ('top' | 'recent'): 'top' (default) for the most liked first, 'recent' for the newest first.
format ('markdown' | 'json'): default 'markdown'.
Returns markdown: a "Replies to" heading, the post, then each reply with its author, timestamp, text and metrics. Returns json: { tweet_id, tweet_url, sort, count, tweet{...}, replies[ ] }.
There is no paging: this is the single page X serves for the post, up to about a hundred replies. Costs 20 calls/minute. A 404 means the post is deleted, private or never existed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The post whose replies to read: URL or bare numeric id. | |
| sort | No | 'top' (default) for the most liked replies first, 'recent' for the newest first. | top |
| format | No | Output format. 'markdown' (default) is compact, human-readable and costs roughly a tenth of the tokens of the same data as JSON — prefer it for reading and summarising. Use 'json' only when you need exact field access: numeric ids, media URLs, per-metric values, or provenance metadata. | markdown |