Our review
Fetches tweet content (text and media) from Twitter/X URLs using the syndication API without authentication.
Strengths
- Works without API keys or JavaScript
- Returns full metadata including text, images, videos, and engagement counts
- Accepts both full URLs and tweet IDs
- No rate limiting on this endpoint as of implementation
Limitations
- Relies on public syndication API which may change or be deprecated
- Cannot access private or deleted tweets
- Data may be less comprehensive than official API
When you need to retrieve tweet content programmatically without authentication.
For large-scale scraping or historical analysis, as API stability is not guaranteed.
Security analysis
SafeThe skill only fetches public tweet data using a documented Node.js script and the non-authenticated Twitter syndication API. It does not perform destructive actions, exfiltrate data, or disable safety features. Using Bash and Node is appropriate for the task.
No concerns found
Examples
Fetch the tweet at https://x.com/username/status/1234567890123456789Get info from tweet ID 1234567890123456789name: twitter description: Fetch tweet content (text and media) from Twitter/X URLs. Use when user asks to access, fetch, or get information from a tweet. allowed-tools: Bash
Twitter/X Tweet Fetching
Access tweet content from Twitter/X URLs using the syndication API, which works without authentication or JavaScript requirements.
Script Location
~/Repositories/scripts/skills/twitter/fetchTweet.js
Usage
Fetch Tweet by URL or ID
node ~/Repositories/scripts/skills/twitter/fetchTweet.js <tweet-url-or-id>
Examples:
# Using full URL
node ~/Repositories/scripts/skills/twitter/fetchTweet.js "https://x.com/username/status/1234567890"
# Using tweet ID only
node ~/Repositories/scripts/skills/twitter/fetchTweet.js "1234567890"
Response Format
The script outputs JSON containing tweet data:
{
"text": "Tweet content here...",
"user": {
"screen_name": "username",
"name": "Display Name"
},
"created_at": "timestamp",
"favorite_count": 123,
"retweet_count": 45,
"photos": [
{
"url": "https://...",
"width": 1200,
"height": 675
}
],
"video": {
"variants": [...]
}
}
Key Fields
text: The tweet's text contentuser.screen_name: Author's handleuser.name: Author's display namephotos: Array of image objects with URLs and dimensionsvideo: Video data if presentfavorite_count: Number of likesretweet_count: Number of retweetscreated_at: Tweet timestamp
Error Handling
The script exits with error code 1 for:
- Invalid tweet ID format
- Tweet not found (404)
- Tweet tombstone (deleted/unavailable)
- API errors
Notes
- Works without Twitter API keys or authentication
- Uses Twitter's public syndication API
- Accepts both full URLs and tweet IDs
- Returns full tweet data including text, media, and metadata
- No rate limiting for this endpoint (as of implementation)
Content Repurposer
Content
Transforms a single piece of content into platform-adapted publications.
SEO Blog Post Writer
Content
Writes SEO-optimized blog posts with proper structure and keywords.
YouTube Script Writer
Content
Writes engaging YouTube scripts with hooks, structure, and retention.