Get Group Participants

Supported & Tested

Return the current participant list for a verified WhatsApp group.

POSThttps://api.waplix.io/api/v1/groups/participants
Authentication
Authorization: Bearer YOUR_API_KEY
Parameters Specification
instance_id
stringReq

Required Waplix instance id

group_id
stringReq

Required WhatsApp group id ending with @g.us

Usage Notes
Use this after create/add/remove actions to confirm current membership.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/groups/participants" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "instance_id": "39058",
    "group_id": "120363429508183753@g.us",
    "count": 2,
    "participants": [
      {
        "id": "142120618831980@lid",
        "admin": "admin"
      },
      {
        "id": "15186538515@s.whatsapp.net",
        "admin": null
      }
    ]
  }
}
Was this page helpful?