BetaThe V4 API is in beta — endpoints and functionality may change.
Group Membersv2

List group members

GET/groups/{groupId}/members

List all members of a group.

Path parameters

groupIdRequiredstring

Unique identifier of the group chat, prefixed with grp_ (e.g. grp_abc123def456). Returned by the create-group and list-groups endpoints.

Headers

AuthorizationRequiredstring

Your API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.

Bearer

Query parameters

limitoptionalinteger

Maximum number of items to return in a single response. Must be between 1 and 200; defaults to 50. Use together with offset to page through large result sets.

offsetoptionalinteger

Number of items to skip before returning results. Combine with limit for page-based pagination (e.g. offset=50&limit=50 returns the second page). Defaults to 0.

Returns

group_idoptionalstring

The group ID

group_nameoptionalstring | null

The group name

icon_urloptionalstring | null

URL of the group icon/photo

membersoptionalGroupMember[]

Array of GroupMember

idoptionalstring

Contact identifier (phone or email)

contact_idoptionalstring
identifieroptionalstring
nameoptionalstring | null
added_atoptionalinteger
paginationoptionalPagination
limitoptionalinteger
offsetoptionalinteger
totaloptionalinteger

Response codes

200List of group members
401Authentication required or invalid
404Resource not found

Sends a live request with your values and shows the real response below. Your key is stored only in this browser.

Request
curl -X GET https://api.blooio.com/v2/api/groups/grp_abc123def456/members?limit=50&offset=0 \  -H "Authorization: Bearer bl_live_..."
Response objectexample
{  "group_id": "grp_a1b2c3d4",  "group_name": "string",  "icon_url": "https://example.com",  "members": [    {      "id": "obj_a1b2c3d4",      "contact_id": "ct_a1b2c3d4",      "identifier": "+15551234567",      "name": "Jane Doe",      "added_at": 0    }  ],  "pagination": {    "limit": 50,    "offset": 1,    "total": 3  }}