Get Tweet
tweetsave_get_tweetFetch a tweet by URL or ID to get its text, media, polls, and engagement metrics in markdown or JSON. No API key required.
Instructions
Fetch a single tweet with all its content including text, media (photos, videos, GIFs), polls, and engagement metrics.
This tool retrieves tweet data from Twitter/X using the FxTwitter API. It returns the tweet content, author info, media URLs, and engagement stats.
Args:
url (string): Tweet URL or tweet ID
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Tweet data including:
Author info (name, username, avatar)
Tweet text
Media URLs (photos, videos)
Engagement (likes, retweets, replies, views)
Poll data (if applicable)
Quote tweet (if applicable)
Examples:
"Get tweet from https://x.com/elonmusk/status/123456"
"Fetch this tweet: 123456789"
Note: Does not fetch replies. Use tweetsave_to_blog for a complete blog post with formatting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Tweet URL or tweet ID. Examples: 'https://x.com/user/status/123456' or '123456' | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |