v11

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-0112893437.0 KB
Communities

List members of a community

get/x/communities/{id}/members

Path parameters

idstring required

Community ID for member lookup

Query parameters

cursorstring

Pagination cursor

pageSizeinteger

Items per page (20-200, default 20). This is an upper bound for paid authenticated calls: remaining credits can reduce the returned page size, and zero affordable results returns 402 insufficient_credits.

Response

List of community members

has_next_pageboolean required
next_cursorstring required

Example response

{
  "users": [
    {
      "id": "9876543210",
      "username": "elonmusk",
      "name": "Elon Musk"
    }
  ],
  "has_next_page": true,
  "next_cursor": "DAACCgACGRElMJcAAA"
}