quote_tweet
Share a tweet with your own commentary to provide context, add perspective, or engage in discussion on X (Twitter).
Instructions
Quote tweet with comment (retweet with your own comment)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | Yes | Your comment on the quoted tweet | |
tweet_id | Yes | The ID of the tweet to quote |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "Your comment on the quoted tweet",
"type": "string"
},
"tweet_id": {
"description": "The ID of the tweet to quote",
"type": "string"
}
},
"required": [
"tweet_id",
"comment"
],
"type": "object"
}