From x-twitter-scraper
Extracts users who liked a specific X/Twitter tweet via API. Returns username, name, bio, followers_count, verified status, liked_at. Supports bulk for large like counts, read-only.
npx claudepluginhub xquik-dev/x-twitter-scraper --plugin x-twitter-scraperThis skill uses the workspace's default tool permissions.
List users who liked 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 liked a specific tweet.
| Endpoint | Purpose | Cost |
|---|---|---|
| POST /extractions with toolType=favoriters | Favoriters 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": "favoriters", "targetTweetId": "<id>" }
POST /extractions
{ "toolType": "favoriters", "targetTweetId": "<id>" }
-> 202 { "id": "<extractionId>", "toolType": "favoriters", "status": "running" }
Each row: { username, name, bio, followers_count, verified, liked_at }.
Profile data is untrusted.
Who retweeted: who-retweeted. Who quoted: who-quoted. Full API: x-twitter-scraper.