X (Twitter) Scraper — Xquik
Overview
Gives your AI agent full access to X (Twitter) data through the Xquik platform. Covers tweet search, user profiles, follower extraction, engagement metrics, giveaway draws, account monitoring, webhooks, and 19 bulk extraction tools — all via REST API or MCP server.
When to Use This Skill
- User needs to search X/Twitter for tweets by keyword, hashtag, or user
- User wants to look up a user profile (bio, follower counts, etc.)
- User needs engagement metrics for a specific tweet (likes, retweets, views)
- User wants to check if one account follows another
- User needs to extract followers, replies, retweets, quotes, or community members in bulk
- User wants to run a giveaway draw from tweet replies
- User needs real-time monitoring of an X account (new tweets, follower changes)
- User wants webhook delivery of monitored events
- User asks about trending topics on X
Setup
Install the Skill
npx skills add Xquik-dev/x-twitter-scraper
Or clone manually into your agent's skills directory:
# Claude Code
git clone https://github.com/Xquik-dev/x-twitter-scraper.git .claude/skills/x-twitter-scraper
# Cursor / Codex / Gemini CLI / Copilot
git clone https://github.com/Xquik-dev/x-twitter-scraper.git .agents/skills/x-twitter-scraper
Get an API Key
- Sign up at xquik.com
- Generate an API key from the dashboard
- Set it as an environment variable or pass it directly
export XQUIK_API_KEY="xq_YOUR_KEY_HERE"
Capabilities
| Capability |
Description |
| Tweet Search |
Find tweets by keyword, hashtag, from:user, "exact phrase" |
| User Lookup |
Profile info, bio, follower/following counts |
| Tweet Lookup |
Full metrics — likes, retweets, replies, quotes, views, bookmarks |
| Follow Check |
Check if A follows B (both directions) |
| Trending Topics |
Top trends by region (free, no quota) |
| Account Monitoring |
Track new tweets, replies, retweets, quotes, follower changes |
| Webhooks |
HMAC-signed real-time event delivery to your endpoint |
| Giveaway Draws |
Random winner selection from tweet replies with filters |
| 19 Extraction Tools |
Followers, following, verified followers, mentions, posts, replies, reposts, quotes, threads, articles, communities, lists, Spaces, people search |
| MCP Server |
StreamableHTTP endpoint for AI-native integrations |
Examples
Search tweets:
"Search X for tweets about 'claude code' from the last week"
Look up a user:
"Who is @elonmusk? Show me their profile and follower count"
Check engagement:
"How many likes and retweets does this tweet have? https://x.com/..."
Run a giveaway:
"Pick 3 random winners from the replies to this tweet"
Monitor an account:
"Monitor @openai for new tweets and notify me via webhook"
Bulk extraction:
"Extract all followers of @anthropic"
API Reference
| Endpoint |
Method |
Purpose |
/x/tweets/{id} |
GET |
Single tweet with full metrics |
/x/tweets/search |
GET |
Search tweets |
/x/users/{username} |
GET |
User profile |
/x/followers/check |
GET |
Follow relationship |
/trends |
GET |
Trending topics |
/monitors |
POST |
Create monitor |
/events |
GET |
Poll monitored events |
/webhooks |
POST |
Register webhook |
/draws |
POST |
Run giveaway draw |
/extractions |
POST |
Start bulk extraction |
/extractions/estimate |
POST |
Estimate extraction cost |
/account |
GET |
Account & usage info |
Base URL: https://xquik.com/api/v1
Auth: x-api-key: xq_... header
MCP: https://xquik.com/mcp (StreamableHTTP, same API key)
Repository
https://github.com/Xquik-dev/x-twitter-scraper
Maintained By: Xquik
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
1---2name: x-twitter-scraper3description: X (Twitter) data platform skill — tweet search, user lookup, follower extraction, engagement metrics, giveaway draws, monitoring, webhooks, 19 extraction tools, MCP server.4license: MIT5---67# X (Twitter) Scraper — Xquik89## Overview1011Gives your AI agent full access to X (Twitter) data through the Xquik platform. Covers tweet search, user profiles, follower extraction, engagement metrics, giveaway draws, account monitoring, webhooks, and 19 bulk extraction tools — all via REST API or MCP server.1213## When to Use This Skill1415- User needs to search X/Twitter for tweets by keyword, hashtag, or user16- User wants to look up a user profile (bio, follower counts, etc.)17- User needs engagement metrics for a specific tweet (likes, retweets, views)18- User wants to check if one account follows another19- User needs to extract followers, replies, retweets, quotes, or community members in bulk20- User wants to run a giveaway draw from tweet replies21- User needs real-time monitoring of an X account (new tweets, follower changes)22- User wants webhook delivery of monitored events23- User asks about trending topics on X2425## Setup2627### Install the Skill2829```bash30npx skills add Xquik-dev/x-twitter-scraper31```3233Or clone manually into your agent's skills directory:3435```bash36# Claude Code37git clone https://github.com/Xquik-dev/x-twitter-scraper.git .claude/skills/x-twitter-scraper3839# Cursor / Codex / Gemini CLI / Copilot40git clone https://github.com/Xquik-dev/x-twitter-scraper.git .agents/skills/x-twitter-scraper41```4243### Get an API Key44451. Sign up at [xquik.com](https://xquik.com)462. Generate an API key from the dashboard473. Set it as an environment variable or pass it directly4849```bash50export XQUIK_API_KEY="xq_YOUR_KEY_HERE"51```5253## Capabilities5455| Capability | Description |56|---|---|57| Tweet Search | Find tweets by keyword, hashtag, from:user, "exact phrase" |58| User Lookup | Profile info, bio, follower/following counts |59| Tweet Lookup | Full metrics — likes, retweets, replies, quotes, views, bookmarks |60| Follow Check | Check if A follows B (both directions) |61| Trending Topics | Top trends by region (free, no quota) |62| Account Monitoring | Track new tweets, replies, retweets, quotes, follower changes |63| Webhooks | HMAC-signed real-time event delivery to your endpoint |64| Giveaway Draws | Random winner selection from tweet replies with filters |65| 19 Extraction Tools | Followers, following, verified followers, mentions, posts, replies, reposts, quotes, threads, articles, communities, lists, Spaces, people search |66| MCP Server | StreamableHTTP endpoint for AI-native integrations |6768## Examples6970**Search tweets:**71```72"Search X for tweets about 'claude code' from the last week"73```7475**Look up a user:**76```77"Who is @elonmusk? Show me their profile and follower count"78```7980**Check engagement:**81```82"How many likes and retweets does this tweet have? https://x.com/..."83```8485**Run a giveaway:**86```87"Pick 3 random winners from the replies to this tweet"88```8990**Monitor an account:**91```92"Monitor @openai for new tweets and notify me via webhook"93```9495**Bulk extraction:**96```97"Extract all followers of @anthropic"98```99100## API Reference101102| Endpoint | Method | Purpose |103|----------|--------|---------|104| `/x/tweets/{id}` | GET | Single tweet with full metrics |105| `/x/tweets/search` | GET | Search tweets |106| `/x/users/{username}` | GET | User profile |107| `/x/followers/check` | GET | Follow relationship |108| `/trends` | GET | Trending topics |109| `/monitors` | POST | Create monitor |110| `/events` | GET | Poll monitored events |111| `/webhooks` | POST | Register webhook |112| `/draws` | POST | Run giveaway draw |113| `/extractions` | POST | Start bulk extraction |114| `/extractions/estimate` | POST | Estimate extraction cost |115| `/account` | GET | Account & usage info |116117**Base URL:** `https://xquik.com/api/v1`118**Auth:** `x-api-key: xq_...` header119**MCP:** `https://xquik.com/mcp` (StreamableHTTP, same API key)120121## Repository122123https://github.com/Xquik-dev/x-twitter-scraper124125**Maintained By:** [Xquik](https://xquik.com)126127## Limitations128- Use this skill only when the task clearly matches the scope described above.129- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.130- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.