Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use Xquik REST and MCP APIs for X data workflows: search public posts, inspect users, export datasets, download media, monitor accounts or keywords, and send webhook events. Use when the user needs X data from Xquik rather than account-scoped X API actions through xurl.
.claude/skills/understudy-ai-xquik/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | 263% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 372% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 517% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 592% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 94% | 0% |
Xquik provides REST and MCP access for X data automation. Use it for public data reads, extraction jobs, media downloads, monitoring, and webhook workflows.
xurl for direct X API v2 account actions such as posting, replying, liking, reposting, following, DMs, or raw X API endpoints.This skill requires an Xquik API key in XQUIK_API_KEY.
bash[ -n "${XQUIK_API_KEY:-}" ] || { printf 'Set XQUIK_API_KEY first.\n' >&2; exit 1; }
Secret safety:
XQUIK_API_KEY.Use the v1 API base URL:
bashbase="https://xquik.com/api/v1"
Search public posts:
bashcurl -fsS \ -H "x-api-key: ${XQUIK_API_KEY}" \ "$base/x/tweets/search?q=from%3AXDevelopers&limit=10"
Look up a user:
bashcurl -fsS \ -H "x-api-key: ${XQUIK_API_KEY}" \ "$base/x/users/XDevelopers"
Read a post by ID:
bashcurl -fsS \ -H "x-api-key: ${XQUIK_API_KEY}" \ "$base/x/tweets/1893456789012345678"
Download media from a public post:
bashcurl -fsS \ -X POST \ -H "x-api-key: ${XQUIK_API_KEY}" \ -H "Content-Type: application/json" \ -d '{"tweetInput":"https://x.com/username/status/1893456789012345678"}' \ "$base/x/media/download"
Check whether one user follows another:
bashcurl -fsS \ -H "x-api-key: ${XQUIK_API_KEY}" \ "$base/x/followers/check?source=XDevelopers&target=OpenAI"
Before creating persistent or bulk work, ask for explicit approval with the exact target, destination, and expected scope.
POST /api/v1/monitorsPOST /api/v1/monitors/keywordsPOST /api/v1/webhooksUse the remote MCP server at:
texthttps://xquik.com/mcp
Authenticate with the x-api-key header from XQUIK_API_KEY. Use the MCP discovery or explore tool first when the user asks for an unfamiliar task, then execute the smallest matching API call.
Other measured skills in the registry, with their headline benchmark lift.