Evolution GO
Get group info
Fetches metadata (name, participants, owner) for a single group.
POST
/
group
/
info
Get group info
curl --request POST \
--url https://pilotstatus.com.br/api/layer/evolution-go/group/info \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '
{
"groupJid": "120363012345678901@g.us"
}
'import requests
url = "https://pilotstatus.com.br/api/layer/evolution-go/group/info"
payload = { "groupJid": "120363012345678901@g.us" }
headers = {
"apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {apikey: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({groupJid: '120363012345678901@g.us'})
};
fetch('https://pilotstatus.com.br/api/layer/evolution-go/group/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://pilotstatus.com.br/api/layer/evolution-go/group/info",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'groupJid' => '120363012345678901@g.us'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"apikey: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pilotstatus.com.br/api/layer/evolution-go/group/info"
payload := strings.NewReader("{\n \"groupJid\": \"120363012345678901@g.us\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apikey", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pilotstatus.com.br/api/layer/evolution-go/group/info")
.header("apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"groupJid\": \"120363012345678901@g.us\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pilotstatus.com.br/api/layer/evolution-go/group/info")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apikey"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"groupJid\": \"120363012345678901@g.us\"\n}"
response = http.request(request)
puts response.read_body{
"message": "success",
"data": {
"JID": "120363012345678901@g.us",
"OwnerJID": "5511999999999@s.whatsapp.net",
"OwnerPN": "5511999999999@s.whatsapp.net",
"Name": "Equipe Pilot Status",
"NameSetAt": "2026-07-01T14:22:31Z",
"NameSetBy": "5511999999999@s.whatsapp.net",
"NameSetByPN": "5511999999999@s.whatsapp.net",
"Topic": "Grupo oficial de suporte",
"TopicID": "1719849751-1",
"TopicSetAt": "2026-07-01T14:25:10Z",
"TopicSetBy": "5511999999999@s.whatsapp.net",
"TopicSetByPN": "5511999999999@s.whatsapp.net",
"TopicDeleted": false,
"IsLocked": false,
"IsAnnounce": false,
"AnnounceVersionID": "",
"IsEphemeral": false,
"DisappearingTimer": 0,
"IsIncognito": false,
"IsParent": false,
"DefaultMembershipApprovalMode": "",
"LinkedParentJID": "",
"IsDefaultSubGroup": false,
"IsJoinApprovalRequired": false,
"AddressingMode": "pn",
"GroupCreated": "2026-07-01T14:22:31Z",
"CreatorCountryCode": "BR",
"ParticipantVersionID": "1719849751",
"Participants": [
{
"JID": "5511999999999@s.whatsapp.net",
"PhoneNumber": "5511999999999@s.whatsapp.net",
"LID": "199999999999999@lid",
"IsAdmin": true,
"IsSuperAdmin": true,
"DisplayName": "",
"Error": 0,
"AddRequest": null
},
{
"JID": "5511988888888@s.whatsapp.net",
"PhoneNumber": "5511988888888@s.whatsapp.net",
"LID": "198888888888888@lid",
"IsAdmin": false,
"IsSuperAdmin": false,
"DisplayName": "",
"Error": 0,
"AddRequest": null
}
],
"ParticipantCount": 2,
"MemberAddMode": "all_member_add",
"Suspended": false
}
}{
"status": 400,
"error": "Bad Request",
"message": "Invalid payload"
}Authorizations
Your Pilot Status API key (ps_...). Evolution GO also accepts Authorization: Bearer <key>.
Body
application/json
Group JID (<id>@g.us).
Example:
"120363012345678901@g.us"
Was this page helpful?
⌘I
Get group info
curl --request POST \
--url https://pilotstatus.com.br/api/layer/evolution-go/group/info \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '
{
"groupJid": "120363012345678901@g.us"
}
'import requests
url = "https://pilotstatus.com.br/api/layer/evolution-go/group/info"
payload = { "groupJid": "120363012345678901@g.us" }
headers = {
"apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {apikey: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({groupJid: '120363012345678901@g.us'})
};
fetch('https://pilotstatus.com.br/api/layer/evolution-go/group/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://pilotstatus.com.br/api/layer/evolution-go/group/info",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'groupJid' => '120363012345678901@g.us'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"apikey: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pilotstatus.com.br/api/layer/evolution-go/group/info"
payload := strings.NewReader("{\n \"groupJid\": \"120363012345678901@g.us\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apikey", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pilotstatus.com.br/api/layer/evolution-go/group/info")
.header("apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"groupJid\": \"120363012345678901@g.us\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pilotstatus.com.br/api/layer/evolution-go/group/info")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apikey"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"groupJid\": \"120363012345678901@g.us\"\n}"
response = http.request(request)
puts response.read_body{
"message": "success",
"data": {
"JID": "120363012345678901@g.us",
"OwnerJID": "5511999999999@s.whatsapp.net",
"OwnerPN": "5511999999999@s.whatsapp.net",
"Name": "Equipe Pilot Status",
"NameSetAt": "2026-07-01T14:22:31Z",
"NameSetBy": "5511999999999@s.whatsapp.net",
"NameSetByPN": "5511999999999@s.whatsapp.net",
"Topic": "Grupo oficial de suporte",
"TopicID": "1719849751-1",
"TopicSetAt": "2026-07-01T14:25:10Z",
"TopicSetBy": "5511999999999@s.whatsapp.net",
"TopicSetByPN": "5511999999999@s.whatsapp.net",
"TopicDeleted": false,
"IsLocked": false,
"IsAnnounce": false,
"AnnounceVersionID": "",
"IsEphemeral": false,
"DisappearingTimer": 0,
"IsIncognito": false,
"IsParent": false,
"DefaultMembershipApprovalMode": "",
"LinkedParentJID": "",
"IsDefaultSubGroup": false,
"IsJoinApprovalRequired": false,
"AddressingMode": "pn",
"GroupCreated": "2026-07-01T14:22:31Z",
"CreatorCountryCode": "BR",
"ParticipantVersionID": "1719849751",
"Participants": [
{
"JID": "5511999999999@s.whatsapp.net",
"PhoneNumber": "5511999999999@s.whatsapp.net",
"LID": "199999999999999@lid",
"IsAdmin": true,
"IsSuperAdmin": true,
"DisplayName": "",
"Error": 0,
"AddRequest": null
},
{
"JID": "5511988888888@s.whatsapp.net",
"PhoneNumber": "5511988888888@s.whatsapp.net",
"LID": "198888888888888@lid",
"IsAdmin": false,
"IsSuperAdmin": false,
"DisplayName": "",
"Error": 0,
"AddRequest": null
}
],
"ParticipantCount": 2,
"MemberAddMode": "all_member_add",
"Suspended": false
}
}{
"status": 400,
"error": "Bad Request",
"message": "Invalid payload"
}