Get Tweet Thread
tweetsave_get_threadFetch the full thread of connected tweets from a given tweet URL, returning all content and media in markdown or JSON.
Instructions
Fetch a tweet thread (multiple connected tweets by the same author).
Note: Current implementation fetches the main tweet. Full thread crawling requires additional API access.
Args:
url (string): URL or ID of any tweet in the thread
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Array of tweets in the thread with all content and media.
Examples:
"Get the full thread from this tweet: https://x.com/user/status/123"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL or ID of any tweet in the thread | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |