Fetch tweet data from an X/Twitter URL without auth or browser automation.
GET https://api.fxtwitter.com/:tweetId
Extract the tweet ID from the URL:
https://x.com/user/status/1234567890 → ID: 1234567890https://twitter.com/user/status/1234567890 → ID: 1234567890curl -s "https://api.fxtwitter.com/1234567890" | jq '.tweet'
Key fields in .tweet:
.text — tweet content.author.name / .author.screen_name.created_at.likes, .retweets, .replies.media.photos[], .media.videos[].url — canonical URLWhen presenting a tweet to the user:
共 1 个版本