> ## 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.

# List participants

> Returns the participant list of a group. Pass the group JID as the `groupJid` query parameter.



## OpenAPI

````yaml openapi.evolution-v2.json GET /group/participants/{instance}
openapi: 3.1.0
info:
  title: Evolution V2 Layer
  version: 1.0.0
  description: >-
    Pilot Status API Layer — Evolution V2. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-v2`. Authenticate with the
    `apikey` header (your Pilot Status `ps_` key). Instance/session endpoints
    are NOT available through the layer.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-v2
security:
  - apiKey: []
tags:
  - name: Call & Business
  - name: Chat
  - name: Group
  - name: Label
  - name: Message
  - name: Profile
  - name: Settings & Proxy
  - name: Storage (S3)
  - name: Template
paths:
  /group/participants/{instance}:
    get:
      tags:
        - Group
      summary: List participants
      description: >-
        Returns the participant list of a group. Pass the group JID as the
        `groupJid` query parameter.
      operationId: get__group_participants_instance
      parameters:
        - name: instance
          in: path
          required: true
          schema:
            type: string
          description: The number's display name in the Pilot Status dashboard.
      responses:
        '200':
          description: Success — provider-native response body.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  List of participants of a group, enriched with contact name
                  and profile picture.
                properties:
                  participants:
                    type: array
                    description: Participants of the group.
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Participant JID.
                        admin:
                          type:
                            - string
                            - 'null'
                          enum:
                            - superadmin
                            - admin
                            - null
                          description: >-
                            Admin role: 'superadmin', 'admin', or null for a
                            regular member.
                        name:
                          type:
                            - string
                            - 'null'
                          description: >-
                            Display/push name of the participant, or null if
                            unknown.
                        imgUrl:
                          type:
                            - string
                            - 'null'
                          description: >-
                            Profile picture URL of the participant, or null if
                            unavailable.
              example:
                participants:
                  - id: 5511999999999@s.whatsapp.net
                    admin: superadmin
                    name: Ismael
                    imgUrl: >-
                      https://pps.whatsapp.net/v/t61.24694-24/contact_5511999999999.jpg
                  - id: 5511988888888@s.whatsapp.net
                    admin: null
                    name: Bruno
                    imgUrl: null
        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>`.

````