Loading...
Loading...
This skill should be used when the user asks to "트윗 가져와", "트윗 번역", "X 게시글 읽어줘", "tweet fetch", "트윗 내용", "트윗 원문", or provides an X/Twitter URL (x.com, twitter.com) and wants to read, translate, or analyze the tweet content. Also useful when other skills need to fetch tweet text programmatically.
npx skill4agent add ai-native-camp/camp-2 fetch-tweetapi.fxtwitter.comapi.fxtwitter.comhttps://x.com/user/status/123456
→ https://api.fxtwitter.com/user/status/123456scripts/fetch_tweet.py# 기본 사용 (포맷팅된 출력)
python scripts/fetch_tweet.py https://x.com/garrytan/status/2020072098635665909
# JSON 출력 (프로그래밍 활용)
python scripts/fetch_tweet.py https://x.com/garrytan/status/2020072098635665909 --jsonx.comtwitter.comfxtwitter.comfixupx.com| 필드 | 설명 |
|---|---|
| 트윗 본문 (URL 확장됨) |
| 작성자 (name, screen_name, bio, followers) |
| 인게이지먼트 |
| 작성 일시 |
| 첨부 미디어 (photos, videos) |
| 인용 트윗 (동일 구조) |
| 언어 코드 |
scripts/fetch_tweet.py <url># JSON 출력으로 파이프라인 연동
python scripts/fetch_tweet.py <url> --json | python3 -c "import sys,json; print(json.load(sys.stdin)['tweet']['text'])"URL: https://api.fxtwitter.com/{screen_name}/status/{status_id}
Prompt: "Extract the full tweet text and author name"