threads_get_replies
Retrieve replies to a Threads post. Choose top-level replies only or the full conversation tree for complete thread analysis.
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. The default fields differ by mode: top_level requests is_verified and profile_picture_url (always populated for direct replies); full_tree drops them since they are 'Only available on direct replies' per the Threads Replies/Conversations docs and would be undefined for every nested entry. Pass an explicit fields override to re-request them in full_tree if needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | 'top_level' (default) returns only direct replies; 'full_tree' returns the full conversation tree flattened | |
| after | No | Pagination cursor | |
| limit | No | Number of replies | |
| fields | No | Comma-separated fields override. Default depends on mode: top_level adds is_verified,profile_picture_url, full_tree omits them because they are 'Only available on direct replies' per the Threads Replies/Conversations docs. | |
| post_id | Yes | Threads post ID to get replies for | |
| reverse | No | Reverse chronological order |