Get Group Metadata
POST /api/group/metadata
Full metadata for one group. Distinct from Get Invite Link.
- Auth: Bearer Device Key
Fields
| Field | Type | Required |
|---|---|---|
group_id | string | ✔ |
Request
curl -X POST https://app.rapiwa.com/api/group/metadata \
-H "Authorization: Bearer YOUR_DEVICE_KEY" \
-H "Content-Type: application/json" \
-d '{"group_id":"120363000000000000@g.us"}'
Response
{
"success": true,
"data": {
"status": true,
"group_id": "120363000000000000@g.us",
"subject": "Launch Team",
"creation_time": 1755923552,
"description": "Ship it 🚀",
"owner": "8801234567890@s.whatsapp.net",
"subject_owner": "8801234567890@s.whatsapp.net",
"participants_count": 2,
"participants": [
{ "id": "8801234567890@s.whatsapp.net", "is_admin": true, "is_superadmin": true, "admin_type": "superadmin" }
],
"raw": { }
}
}