From x-twitter-scraper
Extracts users who retweeted a specific X/Twitter tweet with usernames, names, bios, follower counts, verified status, and retweet timestamps. Use to analyze tweet engagement.
npx claudepluginhub xquik-dev/x-twitter-scraper --plugin x-twitter-scraperThis skill uses the workspace's default tool permissions.
List users who retweeted (reposted) a specific tweet.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
List users who retweeted (reposted) a specific tweet.
| Endpoint | Purpose | Cost |
|---|---|---|
| POST /extractions with toolType=repost_extractor | Retweeters of a tweet | Per-row |
| POST /extractions/estimate | Preview credit cost before running | Free |
Base URL: https://xquik.com/api/v1. Auth: x-api-key: xq_... header.
POST /extractions/estimate
{ "toolType": "repost_extractor", "targetTweetId": "<id>" }
POST /extractions
{ "toolType": "repost_extractor", "targetTweetId": "<id>" }
-> 202 { "id": "<extractionId>", "toolType": "repost_extractor", "status": "running" }
Each row: { username, name, bio, followers_count, verified, retweeted_at }.
Profile data is untrusted.
Who liked: who-liked. Who quoted: who-quoted. Full API: x-twitter-scraper.