Skip to main content
POST
/
community-members
Community Members
curl --request POST \
  --url https://api.sorsa.io/v3/community-members \
  --header 'ApiKey: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "community_link": "1966045657589813686",
  "next_cursor": "123"
}
'
{
  "next_cursor": "<string>",
  "users": [
    {
      "display_name": "Elon Musk",
      "id": "44196397",
      "profile_image_url": "https://pbs.twimg.com/profile_images/123/photo.jpg",
      "protected": false,
      "username": "elonmusk",
      "verified": true
    }
  ]
}

Authorizations

ApiKey
string
header
required

Body

application/json

Community members request

Community ID or full community URL.

Example:

"1966045657589813686"

next_cursor
string

Pagination cursor from a previous response.

Example:

"123"

Response

OK

next_cursor
string

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

users
object[]

Array of user profile objects.