Batch Fetch Tweets
tweetsave_batchFetch up to 10 tweets at once by providing their URLs or IDs, outputting in markdown or JSON format.
Instructions
Fetch multiple tweets at once (max 10).
Useful for:
Collecting tweets from a list
Building a feed from multiple sources
Comparing multiple tweets
Args:
urls (string[]): Array of tweet URLs or IDs (max 10)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Array of tweets or a combined feed in markdown format.
Examples:
"Fetch these tweets: [url1, url2, url3]"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes | Array of tweet URLs or IDs (max 10) | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |