x-tweet-fetcherFetch full tweets, long tweets, quoted tweets, and X Articles from X/Twitter without login or API keys, using no dependencies and zero configuration.
Install via ClawdBot CLI:
clawdbot install hjw21century/x-tweet-fetcherFetch tweets from X/Twitter without authentication. Uses FxTwitter API.
| Content Type | Support |
|-------------|---------|
| Regular tweets | โ Full text + stats |
| Long tweets (Twitter Blue) | โ Full text |
| X Articles (long-form) | โ Complete article text |
| Quoted tweets | โ Included |
| Stats (likes/RT/views) | โ Included |
# JSON output
python3 scripts/fetch_tweet.py --url "https://x.com/user/status/123456"
# Pretty JSON
python3 scripts/fetch_tweet.py --url "https://x.com/user/status/123456" --pretty
# Text only (human readable)
python3 scripts/fetch_tweet.py --url "https://x.com/user/status/123456" --text-only
from scripts.fetch_tweet import fetch_tweet
result = fetch_tweet("https://x.com/user/status/123456")
tweet = result["tweet"]
# Regular tweet
print(tweet["text"])
# X Article (long-form)
if tweet["is_article"]:
print(tweet["article"]["title"])
print(tweet["article"]["full_text"]) # Complete article
print(tweet["article"]["word_count"])
{
"url": "https://x.com/user/status/123",
"username": "user",
"tweet_id": "123",
"tweet": {
"text": "Tweet content...",
"author": "Display Name",
"screen_name": "username",
"likes": 100,
"retweets": 50,
"bookmarks": 25,
"views": 10000,
"replies_count": 30,
"created_at": "Mon Jan 01 12:00:00 +0000 2026",
"is_note_tweet": false,
"is_article": true,
"article": {
"title": "Article Title",
"full_text": "Complete article content...",
"word_count": 4847,
"char_count": 27705
}
}
}
Uses FxTwitter public API (api.fxtwitter.com) which proxies X/Twitter content. Articles are returned as structured blocks and reassembled into full text.
replies_count field)--replies flag exists but returns an explanatory error messageskills/x-tweet-fetcher/
โโโ SKILL.md (this file)
โโโ scripts/
โโโ fetch_tweet.py (single file, zero deps)
Generated Mar 1, 2026
Brands can use this skill to monitor mentions and analyze tweet content without API costs. It enables tracking engagement metrics like likes and retweets to gauge campaign performance and sentiment.
Journalists can fetch tweets and X Articles to gather quotes, verify information, or compile stories. The ability to extract full article text supports in-depth reporting without manual copying.
Researchers can collect tweet data for studies on public discourse, trends, or content analysis. The structured JSON output simplifies data processing for statistical or qualitative analysis.
Influencers or content creators can fetch tweets to curate content, share insights, or engage with community posts. It helps in repurposing X content for blogs or newsletters efficiently.
Companies can fetch customer tweets to monitor feedback, complaints, or praise. Analyzing tweet stats and text aids in improving service and responding to public sentiment quickly.
Offer a free basic tweet fetching service with limited features, then charge for advanced analytics, historical data, or bulk processing. Revenue comes from subscription tiers targeting businesses and researchers.
Package this skill as a hosted API that developers can integrate into their applications. Charge based on usage volume, such as per API call or monthly quotas, with support for custom endpoints.
Sell a customized version of this skill to marketing or PR agencies for internal use or client services. Include branding options and dedicated support, generating revenue through one-time licenses or annual contracts.
๐ฌ Integration Tip
Integrate by calling the Python script from your agent code; ensure Python 3.7+ is available and handle rate limits by adding delays between requests.
Extract text from PDFs with OCR support. Perfect for digitizing documents, processing invoices, or analyzing content. Zero dependencies required.
Fast local PDF parsing with PyMuPDF (fitz) for Markdown/JSON outputs and optional images/tables. Use when speed matters more than robustness, or as a fallback while heavier parsers are unavailable. Default to single-PDF parsing with per-document output folders.
Find, evaluate, and recommend ClawHub skills by need with quality filtering and preference learning.
Skill ๆฅๆพๅจ | Skill Finder. ๅธฎๅฉๅ็ฐๅๅฎ่ฃ ClawHub Skills | Discover and install ClawHub Skills. ๅ็ญ'ๆไปไนๆ่ฝๅฏไปฅX'ใ'ๆพไธไธชๆ่ฝ' | Answers 'what skill can X', 'find a skill'. ่งฆๅ...
Generate QR codes from text or URL for mobile scanning.
Common git operations as a skill (status, pull, push, branch, log)