> ## 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 active calls

> Returns all currently tracked call sessions for the number.



## OpenAPI

````yaml openapi.evolution-go.json GET /call/list
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:
  /call/list:
    get:
      tags:
        - Call (voice)
      summary: List active calls
      description: Returns all currently tracked call sessions for the number.
      operationId: get__call_list
      responses:
        '200':
          description: Success — provider-native response body.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Operation status, always "success" on 200
                  data:
                    type: array
                    description: >-
                      Active tracked calls for the instance (empty array when
                      none)
                    items:
                      type: object
                      properties:
                        instanceId:
                          type: string
                          description: Instance that owns the call
                        callId:
                          type: string
                          description: WhatsApp call id
                        peer:
                          type: string
                          description: Remote party JID
                        direction:
                          type: string
                          description: 'Call direction: outgoing|incoming'
                        state:
                          type: string
                          description: >-
                            Call phase:
                            idle|calling|ringing|connecting|active|ended
                        isVideo:
                          type: boolean
                          description: Whether the call is a video call
                        createdAt:
                          type: string
                          description: RFC3339 UTC timestamp when the call was tracked
              example:
                message: success
                data:
                  - instanceId: f8c3de3d-1fea-4d7c-a8b0-29f63c4c3454
                    callId: 5B8F9A2E1C3D4F6A7B8C
                    peer: 5511999999999@s.whatsapp.net
                    direction: outgoing
                    state: active
                    isVideo: false
                    createdAt: '2026-07-10T14:32:05Z'
                  - instanceId: f8c3de3d-1fea-4d7c-a8b0-29f63c4c3454
                    callId: 9C1A7F3E2D4B6A8051FD
                    peer: 5527988610192@s.whatsapp.net
                    direction: incoming
                    state: ringing
                    isVideo: false
                    createdAt: '2026-07-10T14:35:41Z'
        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>`.

````