Get Community Subgroups

Supported & Tested

Return subgroups linked to a WhatsApp Community.

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

Required Waplix instance id

community_id
stringReq

Required valid WhatsApp community id ending with @g.us

Usage Notes
Returns subgroups linked to the requested community.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/communities/subgroups" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "instance_id": "demo_instance",
  "community_id": "120363000000000001@g.us"
}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "instance_id": "demo_instance",
    "community_id": "120363000000000001@g.us",
    "items": [
      {
        "group_id": "120363000000000002@g.us",
        "subject": "Demo Subgroup"
      }
    ]
  }
}
Was this page helpful?