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

# Oferecer uma chamada

> Oferece uma chamada de voz ou vídeo a um número destinatário por uma duração de toque limitada.



## OpenAPI

````yaml openapi.evolution-v2.pt.json POST /call/offer/{instance}
openapi: 3.1.0
info:
  title: Evolution V2 Layer
  version: 1.0.0
  description: >-
    Camada de API do Pilot Status — Evolution V2. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-v2`. Autentique com o header
    `apikey` (sua chave `ps_` do Pilot Status). Endpoints de instância/sessão
    NÃO estão disponíveis na camada.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-v2
security:
  - apiKey: []
tags:
  - name: Chamada e Business
  - name: Chat
  - name: Grupo
  - name: Etiqueta (Label)
  - name: Mensagem
  - name: Perfil
  - name: Configurações e Proxy
  - name: Armazenamento (S3)
  - name: Template
paths:
  /call/offer/{instance}:
    post:
      tags:
        - Chamada e Business
      summary: Oferecer uma chamada
      description: >-
        Oferece uma chamada de voz ou vídeo a um número destinatário por uma
        duração de toque limitada.
      operationId: post__call_offer_instance
      parameters:
        - name: instance
          in: path
          required: true
          schema:
            type: string
          description: O nome de exibição do número no painel do Pilot Status.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                number:
                  type: string
                  description: Número de telefone do destinatário no formato internacional.
                  example: '5511999999999'
                callDuration:
                  type: integer
                  description: Por quanto tempo a chamada toca, em segundos (1–15).
                  example: 10
                isVideo:
                  type: boolean
                  description: '`true` para chamada de vídeo, `false` para voz.'
                  example: false
              required:
                - number
                - callDuration
      responses:
        '200':
          description: Sucesso — corpo de resposta nativo do provedor.
          content:
            application/json:
              schema:
                type: object
                description: Result of offering (placing) a call to a WhatsApp contact.
                properties:
                  id:
                    type: string
                    description: Identifier of the offered call.
                  jid:
                    type: string
                    description: WhatsApp JID of the callee the offer was placed to.
                  isVideo:
                    type: boolean
                    description: >-
                      Whether the offered call is a video call (false = audio
                      only).
                  callDuration:
                    type: integer
                    description: >-
                      Duration in seconds after which the call is automatically
                      terminated.
                required:
                  - id
                  - jid
              example:
                id: '123'
                jid: 5511999999999@s.whatsapp.net
                isVideo: false
                callDuration: 15
        default:
          description: Erro — erro do provedor ou da camada.
          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>`.

````