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
Example response
{
"users": [
{
"id": "9876543210",
"username": "elonmusk",
"name": "Elon Musk"
}
],
"has_next_page": true,
"next_cursor": "DAACCgACGRElMJcAAA"
}