get_comments_by_submission
Extract and analyze comments from a Reddit submission using the submission ID, optionally replacing MoreComments with detailed replies for comprehensive insights.
Instructions
Retrieve comments from a specific submission.
Args:
submission_id: ID of the submission to get comments from
replace_more: Whether to replace MoreComments objects with actual comments
Returns:
List of comments with their replies
Input Schema
Name | Required | Description | Default |
---|---|---|---|
replace_more | No | ||
submission_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"replace_more": {
"default": true,
"title": "Replace More",
"type": "boolean"
},
"submission_id": {
"title": "Submission Id",
"type": "string"
}
},
"required": [
"submission_id"
],
"title": "get_comments_by_submissionArguments",
"type": "object"
}