WasenderApi - Low Cost WhatsApp API for Developers Get All Groups - API Documentation - WasenderApi - Low Cost WhatsApp API for Developers
WasenderApi API

API Documentation

WasenderApi WhatsApp API

Get All Groups

Groups

GET/api/groups

Retrieves a list of all WhatsApp groups the connected account is a member of.

Get All Groups

Retrieve a list of all WhatsApp groups that the connected WhatsApp account is currently a part of. The response includes group ID, name, participants, creation time, and owner.

If the list is empty, it may mean no groups 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.

Code Examples

curl "https://www.wasenderapi.com/api/groups"
  -H "Authorization: Bearer YOUR_API_KEY"

Response Examples

{
    "success": true,
    "data": [
        {
            "jid": "[email protected]",
            "name": "Group Name",
            "imgUrl": null
        }
    ]
}