Skip to main content
GET
/
x
/
communities
/
{id}
/
members
Get community members
curl --request GET \
  --url https://xquik.com/api/v1/x/communities/{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/communities/1234567890/members \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq
Use GET /x/communities/{id}/members for member exports, CRM enrichment, audience review, or moderator handoff. It creates one row per community member. Store community_id, member_id, username, display_name, bio, follower_count, verified, profile_image_url, and next_cursor.

Path parameters

id
string
required
Community 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.

Headers

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

Response

users
object[]
Array of community 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..."
}
Next steps: Community Info for community details, or Community Moderators to list moderators.
Last modified on May 17, 2026