get_comment_by_id
Retrieve detailed information and replies for a specific Reddit comment using its unique ID, enabling focused analysis or response generation.
Instructions
Retrieve a specific comment by ID.
Args:
comment_id: ID of the comment to retrieve
Returns:
Comment details with any replies
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"comment_id": {
"title": "Comment Id",
"type": "string"
}
},
"required": [
"comment_id"
],
"title": "get_comment_by_idArguments",
"type": "object"
}