Groupsv2
Get a group
GET
/groups/{groupId}Get details for a specific group.
Path parameters
groupIdRequiredstringUnique identifier of the group chat, prefixed with grp_ (e.g. grp_abc123def456). Returned by the create-group and list-groups endpoints.
Headers
AuthorizationRequiredstringYour 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
Returns
group_idoptionalstringnameoptionalstring | nullGroup name. Null for unnamed groups.
chat_guidoptionalstring | nullBlueBubbles chat GUID if linked to a device group chat
icon_urloptionalstring | nullURL of the group icon/photo
member_countoptionalintegermessage_countoptionalintegerTotal number of messages in this group
last_message_textoptionalstring | nullText of the most recent message in the group
last_message_timeoptionalinteger | nullTimestamp of the most recent message
last_message_directionoptionalstringDirection of the most recent message
"inbound""outbound"created_atoptionalintegerResponse codes
200Group details
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.
curl -X GET https://api.blooio.com/v2/api/groups/grp_abc123def456 \ -H "Authorization: Bearer bl_live_..."{ "group_id": "grp_a1b2c3d4", "name": "Jane Doe", "chat_guid": "grp_a1b2c3d4", "icon_url": "https://example.com", "member_count": 3, "message_count": 3, "last_message_text": "string", "last_message_time": 0, "last_message_direction": "inbound", "created_at": 0}