> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pilotstatus.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Get group info

> Fetches metadata (name, participants, owner) for a single group.



## OpenAPI

````yaml openapi.evolution-go.json POST /group/info
openapi: 3.1.0
info:
  title: Evolution GO Layer
  version: 1.0.0
  description: >-
    Pilot Status API Layer — Evolution GO. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-go`. Authenticate with the
    `apikey` header (your Pilot Status `ps_` key) or `Authorization: Bearer`.
    Instance/session endpoints are NOT available through the layer.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-go
security:
  - apiKey: []
tags:
  - name: Call (voice)
  - name: Chat
  - name: Community
  - name: Group
  - name: Label
  - name: Message
  - name: Newsletter / Channels
  - name: Send (load-balanced)
  - name: User / Contacts
paths:
  /group/info:
    post:
      tags:
        - Group
      summary: Get group info
      description: Fetches metadata (name, participants, owner) for a single group.
      operationId: post__group_info
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                groupJid:
                  type: string
                  description: Group JID (`<id>@g.us`).
                  example: 120363012345678901@g.us
              required:
                - groupJid
      responses:
        '200':
          description: Success — provider-native response body.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  Envelope returned for Get group info. `data` is a single raw
                  whatsmeow types.GroupInfo (PascalCase fields, embedded structs
                  flattened, JIDs serialized as strings).
                properties:
                  message:
                    type: string
                    description: Always "success" on HTTP 200.
                  data:
                    type: object
                    properties:
                      JID:
                        type: string
                        description: Group JID.
                      OwnerJID:
                        type: string
                        description: JID of the group creator/owner.
                      OwnerPN:
                        type: string
                        description: Phone-number JID of the owner.
                      Name:
                        type: string
                        description: Group subject/name.
                      NameSetAt:
                        type: string
                        format: date-time
                      NameSetBy:
                        type: string
                      NameSetByPN:
                        type: string
                      Topic:
                        type: string
                        description: Group description/topic.
                      TopicID:
                        type: string
                      TopicSetAt:
                        type: string
                        format: date-time
                      TopicSetBy:
                        type: string
                      TopicSetByPN:
                        type: string
                      TopicDeleted:
                        type: boolean
                      IsLocked:
                        type: boolean
                        description: Only admins can edit group info.
                      IsAnnounce:
                        type: boolean
                        description: Only admins can send messages.
                      AnnounceVersionID:
                        type: string
                      IsEphemeral:
                        type: boolean
                      DisappearingTimer:
                        type: integer
                        description: Disappearing-messages timer in seconds.
                      IsIncognito:
                        type: boolean
                      IsParent:
                        type: boolean
                      DefaultMembershipApprovalMode:
                        type: string
                      LinkedParentJID:
                        type: string
                      IsDefaultSubGroup:
                        type: boolean
                      IsJoinApprovalRequired:
                        type: boolean
                      AddressingMode:
                        type: string
                        description: '"pn" or "lid".'
                      GroupCreated:
                        type: string
                        format: date-time
                      CreatorCountryCode:
                        type: string
                      ParticipantVersionID:
                        type: string
                      Participants:
                        type: array
                        items:
                          type: object
                          properties:
                            JID:
                              type: string
                            PhoneNumber:
                              type: string
                            LID:
                              type: string
                            IsAdmin:
                              type: boolean
                            IsSuperAdmin:
                              type: boolean
                            DisplayName:
                              type: string
                            Error:
                              type: integer
                              description: Error code if adding failed (0 = success).
                            AddRequest:
                              type:
                                - object
                                - 'null'
                              properties:
                                Code:
                                  type: string
                                Expiration:
                                  type: string
                                  format: date-time
                      ParticipantCount:
                        type: integer
                      MemberAddMode:
                        type: string
                        description: '"admin_add" or "all_member_add".'
                      Suspended:
                        type: boolean
              example:
                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
        default:
          description: Error — provider or layer error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                  error:
                    type: string
                  message:
                    type: string
                  response:
                    type: object
              example:
                status: 400
                error: Bad Request
                message: Invalid payload
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: >-
        Your Pilot Status API key (ps_...). Evolution GO also accepts
        `Authorization: Bearer <key>`.

````