Skip to main content
GET
/
v1
/
groups
/
{group_id}
Get Group
curl --request GET \
  --url https://api.happenstance.ai/v1/groups/{group_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "member_count": 123,
  "members": [
    {
      "name": "<string>"
    }
  ],
  "slug": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

group_id
string
required

Response

Successful Response

Response from GET /v1/groups/{group_id} - retrieving group details.

id
string
required

Unique identifier for the group

name
string
required

Name of the group

member_count
integer
required

Number of members in the group

members
GroupMemberV1 · object[]
required

List of group members

slug
string | null

URL slug for the group