reply_to_tweet
Post a direct reply to an existing X/Twitter tweet by specifying the tweet ID and reply content, enabling real-time engagement with conversations.
Instructions
Reply to an existing tweet directly (without creating a draft)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The content of the reply tweet | |
| reply_to_tweet_id | Yes | The ID of the tweet to reply to |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content of the reply tweet",
"type": "string"
},
"reply_to_tweet_id": {
"description": "The ID of the tweet to reply to",
"type": "string"
}
},
"required": [
"content",
"reply_to_tweet_id"
],
"type": "object"
}