Overview
You can fetch comprehensive information about a group, including its metadata, participants, settings, and description.
Authentication
This endpoint requires authentication via the apikey header.
Your Evolution API key for authentication.
Path Parameters
The name of your WhatsApp instance.
Query Parameters
The WhatsApp group JID. You can provide it with or without the @g.us suffix (e.g., 120363123456789 or [email protected]).
Response
The WhatsApp JID of the group.
The JID of who last changed the group subject.
Unix timestamp of when the subject was last changed.
Number of participants in the group.
Unix timestamp of when the group was created.
The JID of the group creator.
Unique identifier for the current description.
The JID of who last changed the description.
Unix timestamp of when the description was last changed.
Array of group participants.
Participant’s WhatsApp JID.
Whether the participant is an admin.
Whether the participant is a super admin (group creator).
Whether the group is announcement-only (only admins can send messages).
Whether the group settings are restricted (only admins can change group info).
Disappearing messages duration in seconds (0 means disabled).
The group’s current invite code.
curl --request GET \
--url 'https://api.example.com/group/findGroupInfos/[email protected]' \
--header 'apikey: YOUR_API_KEY'
{
"id": "[email protected]",
"subject": "Project Team",
"subjectOwner": "[email protected]",
"subjectTime": 1709553600,
"size": 5,
"creation": 1709467200,
"owner": "[email protected]",
"desc": "Team collaboration group for the new project",
"descId": "3EB0ABC123456789",
"descOwner": "[email protected]",
"descTime": 1709553600,
"participants": [
{
"id": "[email protected]",
"isAdmin": true,
"isSuperAdmin": true
},
{
"id": "[email protected]",
"isAdmin": true,
"isSuperAdmin": false
},
{
"id": "[email protected]",
"isAdmin": false,
"isSuperAdmin": false
}
],
"announce": false,
"restrict": true,
"ephemeralDuration": 0,
"inviteCode": "F1EX5QZxO181L3TMVP31gY"
}
Usage Notes
You must be a member of the group to retrieve its information.
The @g.us suffix is automatically added if you provide only the numeric group ID.