get_twitter_tweets
Retrieve tweets from any Twitter/X user by providing their username to access their posting history and content.
Instructions
Get tweets from a Twitter/X user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| handle | Yes | Twitter username |
Input Schema (JSON Schema)
{
"properties": {
"handle": {
"description": "Twitter username",
"type": "string"
}
},
"required": [
"handle"
],
"type": "object"
}