Get Group Info

Supported & Tested

Return full verified group metadata for a WhatsApp group.

POSThttps://api.waplix.io/api/v1/groups/info
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
Keep group_id as raw WhatsApp text such as 120363429508183753@g.us.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/groups/info" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "id": "120363429508183753@g.us",
    "subject": "Waplix Test Group",
    "subjectOwner": "923000935862@s.whatsapp.net",
    "subjectTime": 1781000000,
    "creation": 1780999000,
    "owner": "923000935862@s.whatsapp.net",
    "desc": "Updated description",
    "descId": "DESC_ID",
    "participants_count": 2,
    "announce": false,
    "restrict": true,
    "ephemeralDuration": 0,
    "participants": [
      {
        "id": "142120618831980@lid",
        "admin": "admin"
      },
      {
        "id": "15186538515@s.whatsapp.net",
        "admin": null
      }
    ]
  }
}
Was this page helpful?