reply_to_post
Post a reply to an existing Reddit post by providing the post ID and your response content, enabling interaction with Reddit discussions.
Instructions
Post a reply to an existing Reddit post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the reply | |
post_id | Yes | The ID of the post to reply to | |
subreddit | No | The subreddit name if known (for validation) |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content of the reply",
"type": "string"
},
"post_id": {
"description": "The ID of the post to reply to",
"type": "string"
},
"subreddit": {
"description": "The subreddit name if known (for validation)",
"type": "string"
}
},
"required": [
"post_id",
"content"
],
"type": "object"
}