Skip to main content

Fetch Groups

Method#

/groups#

GET https://api.z-api.io/instances/YOUR_INSTANCE/token/YOUR_TOKEN/groups

Header#

KeyValue
Client-TokenACCOUNT SECURITY TOKEN

Concept#

This method is responsible for returning all groups.


Attributes#

Required#

AttributesTypeDescription
pageintegerUsed for pagination; specify the page number of groups to fetch.
pageSizeintegerSpecifies the number of groups returned per page.

Optional#

AttributesTypeDescription

Request Params#

Example URL#

Method

GET https://api.z-api.io/instances/YOUR_INSTANCE/token/YOUR_TOKEN/groups?page=1&pageSize=10


Response#

200#

AttributesTypeDescription
archivedbooleantrue or false indicating whether the chat is archived.
pinnedbooleantrue or false indicating whether the chat is pinned.
phonestringContact phone number.
unreadstringNumber of unread messages in a chat.
namestringName assigned to the chat. If it is a group or broadcast list, it will return the respective IDs.
lastMessageTimestringTimestamp of the last interaction with the chat.
muteEndTimestringTimestamp indicating when notifications will be reactivated (-1 means permanently muted).
isMutedstring0 or 1 indicating whether this chat is muted.
isMarkedSpambooleantrue or false indicating whether this chat was marked as spam.
isGroupbooleantrue or false indicating whether it is a group.
messagesUnreadintegerDeprecated

Example

[
{
"isGroup": true,
"name": "Test Group",
"phone": "120263358412332916-group",
"unread": "0",
"lastMessageTime": "1730918668000",
"isMuted": "0",
"isMarkedSpam": "false",
"archived": "false",
"pinned": "false",
"muteEndTime": null,
"messagesUnread": "0"
}
]

405#

In this case, ensure that you are correctly following the method specification, i.e., check if you are sending a POST or GET request as specified at the beginning of this topic.

415#

If you receive a 415 error, make sure to add the correct "Content-Type" header in the request. In most cases, it should be "application/json".


Code#