xAPIs.dev
API Reference · v2
Free Tools{ }OpenAPI YAMLGet API key
API Reference / Community / Get community members

Get community members

GET/twitter/community/members18 credits

List the members of a Twitter Community. Cursor-paginated. The sample response below is captured from the live API. List endpoints paginate with `has_next_page` and `next_cursor`.

Authentication required
Send your key in the x-api-key header. Requests without a valid key return 401.

Query parameters

community_id
stringrequired
The numeric ID of the community.
cursor
stringoptional
Pagination cursor for the next page.

Response fields

membersarray
Array of member user objects.
has_nextboolean
Legacy pagination flag (mirrors has_next_page).
has_next_pageboolean
Whether another page of results is available.
next_cursorstring
Cursor for the next page; null or empty when exhausted.
statusstring
Request status: "success" or "error".
msgstring
Status message from the upstream.
Request
curl https://v2.xapis.dev/twitter/community/members \
  -G --data-urlencode "community_id=1493446837214187523" \
  -H "x-api-key: $XAPIS_KEY"
Response200 OK
application/json
{
  "members": [
    {
      "id": "641633",
      "name": "Marc Köhlbrugge",
      "screen_name": "marckohlbrugge",
      "location": "",
      "url": "https://t.co/QVn818Sinw",
      "description": "🚧 https://t.co/aMZ4K3azU0 🏠 https://t.co/1KH3Ex4L2r 🤑 https://t.co/z2G662Uvhl 👀 https://t.co/LtA…",
      "email": null,
      "protected": false,
      "verified": false,
      "followers_count": 84806,
      "following_count": 926,
      "friends_count": 926,
      "favourites_count": 36334,
      "statuses_count": 49226,
      "media_tweets_count": 4787,
      "created_at": "Mon Jan 15 23:55:33 +0000 2007",
      "profile_banner_url": "https://pbs.twimg.com/profile_banners/641633/1781378883",
      "profile_image_url_https": "https://pbs.twimg.com/profile_images/1857124042433572864/iMivVaYP_normal.jpg",
      "can_dm": false,
      "isBlueVerified": true
    }
  ],
  "has_next": true,
  "has_next_page": true,
  "next_cursor": "Q3ljUkFBQUFBQXdBQkF3S213ekJWUW8rdlFBQUFBQkViNUJUQ20wN0FBQUJmd2RyQS9nQURKb3JDajY5Zi8vLy8vLy8vLzhLYlR0…",
  "status": "success",
  "msg": "success"
}
base url · https://v2.xapis.dev
Ready to call Get community members?