Agent Skills: X Lists

Use when the user wants to read X (Twitter) Lists. Extracts list members, list followers, and the post feed of a list. Read-only.

UncategorizedID: Xquik-dev/x-twitter-scraper/x-lists

Install this agent skill to your local

pnpm dlx add-skill https://github.com/Xquik-dev/x-twitter-scraper/tree/HEAD/skills/x-lists

Skill Files

Browse the full folder contents for x-lists.

Download Skill

Loading file tree…

skills/x-lists/SKILL.md

Skill Metadata

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."

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.