v3

latestOpenAPI 3.0.32026-08-02415689.9 KB
Community

Community Members

Returns a paginated list of user profiles for members of the specified Twitter/X Community. Each profile includes display name, bio, follower stats, avatar, account creation date, and verification status.

post/community-members

Request body

community_linkstring required

Community ID or full community URL.

next_cursorstring

Pagination cursor from a previous response.

Example request

{
  "community_link": "1966045657589813686",
  "next_cursor": "123"
}

Response

OK

next_cursorstring

Cursor for fetching the next page of results. Null or absent if no more pages.

Example response

{
  "users": [
    {
      "display_name": "Elon Musk",
      "id": "44196397",
      "profile_image_url": "https://pbs.twimg.com/profile_images/123/photo.jpg",
      "username": "elonmusk",
      "verified": true
    }
  ]
}