Skip to main content
GET
/
x
/
lists
/
{id}
/
members
Get list members
curl --request GET \
  --url https://xquik.com/api/v1/x/lists/{id}/members \
  --header 'x-api-key: <api-key>'

Documentation Index

Fetch the complete documentation index at: https://docs.xquik.com/llms.txt

Use this file to discover all available pages before exploring further.

Requested result counts are upper bounds for paid authenticated calls. When remaining credits cannot cover the full page or ID list, Xquik returns fewer results. If zero paid results are affordable, it returns 402 insufficient_credits.
1 credit per result returned · All plans from $0.00012/credit
curl "https://xquik.com/api/v1/x/lists/1234567890/members" \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq
The Node.js and Python snippets shape durable list-member rows instead of printing full profile pages. Persist memberRows or member_rows with nextCursor before requesting the next page.

Direct list member handoff

Use GET /x/lists/{id}/members when a CRM, warehouse, audience, enrichment, or agent workflow needs one JSON page of accounts on a list. Use list_member_extractor when you need a saved extraction, estimated job, or CSV/JSON/XLSX file export. Store list_id, member_id, username, display_name, profile metrics, verification state, has_next_page, and next_cursor. Treat next_cursor as opaque and pass it back as cursor only when has_next_page is true. Set pageSize from 20 to 200 for direct calls. Zero affordable results return 402 insufficient_credits.

Member roster

Page accounts the list owner curated as members. Use the row shape above for CRM, warehouse, and audience imports.

Next page

Store has_next_page and next_cursor. Only request another page when has_next_page is true.

Page size

Set pageSize from 20 to 200. Treat the returned users.length as the row count for the page.

Saved export

Use list_member_extractor when the workflow needs a saved job with CSV/JSON/XLSX output.

Path parameters

id
string
required
List ID (numeric string).

Query parameters

cursor
string
Pagination cursor from a previous response. Omit for the first page.
pageSize
number
Results per page. Range: 20-200. Default: 20.

Which list endpoint?

List members

Use GET /x/lists/{id}/members for accounts the list owner added to the list.

List followers

Use GET /x/lists/{id}/followers for accounts that follow the list.

List tweets

Use GET /x/lists/{id}/tweets for tweets from accounts in the list.

Bulk list jobs

Use Create extraction with list_member_extractor, list_follower_explorer, or list_post_extractor when the workflow needs a saved export.

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported.

Response

users
object[]
Array of list members.
has_next_page
boolean
Whether more results are available.
next_cursor
string
Cursor for the next page. Pass as the cursor query parameter.
{
  "users": [
    {
      "id": "987654321",
      "username": "xquikcom",
      "name": "Xquik",
      "followers": 10000,
      "verified": true,
      "profilePicture": "https://pbs.twimg.com/profile_images/xquik/photo.jpg"
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAACCgACGE..."
}
Last modified on May 25, 2026