threads_get_replies
Fetch replies for a Threads post. Use top-level mode for direct replies or full_tree mode for the complete conversation.
Instructions
Get replies for a specific Threads post. By default returns only top-level replies (mode='top_level', endpoint /{post}/replies). Set mode='full_tree' to get the entire conversation flattened — every reply at every nesting level (endpoint /{post}/conversation). Both modes share the same response shape; full_tree additionally populates root_post, replied_to, is_reply so the caller can reconstruct the tree.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| post_id | Yes | Threads post ID to get replies for | |
| mode | No | 'top_level' (default) returns only direct replies; 'full_tree' returns the full conversation tree flattened | |
| reverse | No | Reverse chronological order | |
| limit | No | Number of replies | |
| after | No | Pagination cursor |