Retrieve a list of all participants in a WhatsApp group, including their roles and display information.
This endpoint returns detailed information about each participant, including their admin status and display names.
Request
Device identifier for multi-device support. Required when multiple devices are registered. If only one device is registered, it will be used as the default.
The group ID to fetch participants for Example: 120363024512399999@g.us
Response
Response code (e.g., SUCCESS)
Response message describing the result Example: Success getting group participants
Array of participant objects Participant’s JID Example: 6289987391723@s.whatsapp.net
Participant’s phone number with WhatsApp suffix
Participant’s LID (if available) Example: 12345@lid
Participant’s display name
Whether the participant is a group admin
Whether the participant is a super admin (group creator)
curl -X GET \
'https://your-api-domain.com/group/participants?group_id=120363024512399999@g.us' \
-H 'X-Device-Id: my-device' \
-u 'username:password'
{
"code" : "SUCCESS" ,
"message" : "Success getting group participants" ,
"results" : {
"group_id" : "120363024512399999@g.us" ,
"name" : "My Awesome Group" ,
"participants" : [
{
"jid" : "6289987391723@s.whatsapp.net" ,
"phone_number" : "6289987391723@s.whatsapp.net" ,
"lid" : "12345@lid" ,
"display_name" : "Anonymous Member" ,
"is_admin" : true ,
"is_super_admin" : false
}
]
}
}