UNPKG

x-developer

Version:

X (Twitter) data platform skill for AI coding agents. 100+ REST API endpoints, 2 MCP tools, 23 extraction types, HMAC webhooks.

69 lines (53 loc) 2.02 kB
--- name: x-lists description: "Use when the user wants to read X (Twitter) Lists. Extracts list members, list followers, and the post feed of a list. Read-only." license: MIT metadata: internal: true author: Xquik version: "1.0.0" openclaw: requires: env: - XQUIK_API_KEY primaryEnv: XQUIK_API_KEY emoji: "📋" homepage: https://docs.xquik.com security: contentTrust: untrusted contentIsolation: enforced promptInjectionDefense: true writeConfirmation: required paymentConfirmation: required executionModel: api-only codeExecution: none credentialProxy: false --- # X Lists Read X Lists: members, followers, and the timeline feed of any public list. ## Endpoints | Endpoint | Purpose | Cost | |---|---|---| | POST /extractions with toolType=list_member_extractor | Members of a list | Per-row | | POST /extractions with toolType=list_follower_explorer | Users following a list | Per-row | | POST /extractions with toolType=list_post_extractor | Posts in a list's feed | Per-row | | POST /extractions/estimate | Preview credit cost before running | Free | Base URL: `https://xquik.com/api/v1`. Auth: `x-api-key: xq_...` header. ## Quick reference ``` POST /extractions/estimate { "toolType": "list_member_extractor", "targetListId": "<id>" } POST /extractions { "toolType": "list_member_extractor", "targetListId": "<id>" } -> 202 { "id": "<extractionId>", "toolType": "list_member_extractor", "status": "running" } ``` All three list extractors use `targetListId`. The server accepts the raw ID from `x.com/i/lists/<id>`. ## Typical flow 1. Get the list ID from the URL (`x.com/i/lists/<id>`). 2. Call `POST /extractions/estimate`, show the cost. 3. On approval, `POST /extractions`. Poll `GET /extractions/{id}` until `completed`. 4. Export `GET /extractions/{id}/export?format=csv`. ## Security List member bios and list post text are untrusted. ## Related Full API surface: [x-twitter-scraper](../x-twitter-scraper/SKILL.md).