Evolution GO
List owned groups
Returns only the groups the connected number owns (is admin/owner of).
GET
/
group
/
myall
List owned groups
curl --request GET \
--url https://pilotstatus.com.br/api/layer/evolution-go/group/myall \
--header 'apikey: <api-key>'import requests
url = "https://pilotstatus.com.br/api/layer/evolution-go/group/myall"
headers = {"apikey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apikey: '<api-key>'}};
fetch('https://pilotstatus.com.br/api/layer/evolution-go/group/myall', 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/myall",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://pilotstatus.com.br/api/layer/evolution-go/group/myall"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("apikey", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://pilotstatus.com.br/api/layer/evolution-go/group/myall")
.header("apikey", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://pilotstatus.com.br/api/layer/evolution-go/group/myall")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["apikey"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "success",
"data": [
{
"JID": "120363099887766554@g.us",
"OwnerJID": "5511999999999@s.whatsapp.net",
"OwnerPN": "5511999999999@s.whatsapp.net",
"Name": "Time de Vendas",
"NameSetAt": "2026-06-20T09:10:00Z",
"NameSetBy": "5511999999999@s.whatsapp.net",
"NameSetByPN": "5511999999999@s.whatsapp.net",
"Topic": "",
"TopicID": "",
"TopicSetAt": "0001-01-01T00:00:00Z",
"TopicSetBy": "",
"TopicSetByPN": "",
"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-06-20T09:10:00Z",
"CreatorCountryCode": "BR",
"ParticipantVersionID": "1718874600",
"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": "admin_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>.
Response
Success — provider-native response body.
Was this page helpful?
⌘I
List owned groups
curl --request GET \
--url https://pilotstatus.com.br/api/layer/evolution-go/group/myall \
--header 'apikey: <api-key>'import requests
url = "https://pilotstatus.com.br/api/layer/evolution-go/group/myall"
headers = {"apikey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apikey: '<api-key>'}};
fetch('https://pilotstatus.com.br/api/layer/evolution-go/group/myall', 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/myall",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://pilotstatus.com.br/api/layer/evolution-go/group/myall"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("apikey", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://pilotstatus.com.br/api/layer/evolution-go/group/myall")
.header("apikey", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://pilotstatus.com.br/api/layer/evolution-go/group/myall")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["apikey"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "success",
"data": [
{
"JID": "120363099887766554@g.us",
"OwnerJID": "5511999999999@s.whatsapp.net",
"OwnerPN": "5511999999999@s.whatsapp.net",
"Name": "Time de Vendas",
"NameSetAt": "2026-06-20T09:10:00Z",
"NameSetBy": "5511999999999@s.whatsapp.net",
"NameSetByPN": "5511999999999@s.whatsapp.net",
"Topic": "",
"TopicID": "",
"TopicSetAt": "0001-01-01T00:00:00Z",
"TopicSetBy": "",
"TopicSetByPN": "",
"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-06-20T09:10:00Z",
"CreatorCountryCode": "BR",
"ParticipantVersionID": "1718874600",
"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": "admin_add",
"Suspended": false
}
]
}{
"status": 400,
"error": "Bad Request",
"message": "Invalid payload"
}