GET
/api/groups/{groupJid}/participants
Retrieves a list of participants for a specific group. Warning: If the list is empty, it may mean no participants are currently synced or available, or the initial sync is still in progress. If you connected your session before 5/8/2025, you must reconnect it to sync them correctly.
Get Group Participants
Retrieves a list of participants for a specific group. Warning: If the list is empty, it may mean no participants are currently synced or available, or the initial sync is still in progress. If you connected your session before 5/8/2025, you must reconnect it to sync them correctly.
Parameters
Name | Type | Required | Description |
---|---|---|---|
groupJid | string | Yes | The JID (Jabber ID) of the group in the format 123456789-987654321@g.us. |
Code Examples
curl "https://www.wasenderapi.com/api/groups/{groupJid}/participants"
-H "Authorization: Bearer YOUR_API_KEY"
Response Examples
{
"success": true,
"data": [
{
"id": "123456789012345@lid"
},
{
"id": "987654321098765@lid",
"admin": "superadmin"
}
]
}