Twitter/X Tweet Fetching

VerifiedSafe

Fetches tweet content (text and media) from Twitter/X URLs using the public syndication API, requiring no authentication. Accepts both full URLs and tweet IDs, returning JSON with tweet text, author info, like/retweet counts, and attached media. Ideal when you need to programmatically retrieve information from a tweet without API keys.

Sby Skills Guide Bot
ContentBeginner
1006/2/2026
Claude Code
#twitter#tweet-fetching#social-media#data-extraction

Recommended for

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 to use it

When you need to retrieve tweet content programmatically without authentication.

When not to use it

For large-scale scraping or historical analysis, as API stability is not guaranteed.

Security analysis

Safe
Quality score92/100

The 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 tweet by URL
Fetch the tweet at https://x.com/username/status/1234567890123456789
Fetch tweet by ID
Get info from tweet ID 1234567890123456789

name: 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 content
  • user.screen_name: Author's handle
  • user.name: Author's display name
  • photos: Array of image objects with URLs and dimensions
  • video: Video data if present
  • favorite_count: Number of likes
  • retweet_count: Number of retweets
  • created_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)
Related skills