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

# Enviar status

> Publica um status (story) como texto ou mídia por URL pública (upload de arquivo de mídia também é suportado).



## OpenAPI

````yaml openapi.evolution-v2.pt.json POST /message/sendStatus/{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:
  /message/sendStatus/{instance}:
    post:
      tags:
        - Mensagem
      summary: Enviar status
      description: >-
        Publica um status (story) como texto ou mídia por URL pública (upload de
        arquivo de mídia também é suportado).
      operationId: post__message_sendStatus_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:
                type:
                  type: string
                  description: Um entre `text`, `image`, `audio`, `video`.
                  example: text
                content:
                  type: string
                  description: Texto do status, ou a URL pública da mídia.
                  example: We are online!
                caption:
                  type: string
                  description: Legenda para status de mídia.
                backgroundColor:
                  type: string
                  description: 'Cor de fundo para status de texto (ex.: `#25D366`).'
                  example: '#25D366'
                font:
                  type: integer
                  description: Índice de fonte para status de texto (0–5).
                  example: 2
                statusJidList:
                  type: array
                  items:
                    type: string
                  description: >-
                    JIDs de destinatários (strings numéricas) autorizados a ver
                    o status.
                allContacts:
                  type: boolean
                  description: Publicar para todos os contatos em vez de uma lista de JIDs.
                  example: true
              required:
                - type
                - content
      responses:
        '200':
          description: Sucesso — corpo de resposta nativo do provedor.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  Posted a status/story broadcast. Returns the persisted Baileys
                  messageRaw envelope; remoteJid is 'status@broadcast'. The
                  message content key depends on the status type
                  (text/image/video/audio).
                properties:
                  key:
                    type: object
                    properties:
                      remoteJid:
                        type: string
                        description: Always 'status@broadcast'.
                      fromMe:
                        type: boolean
                      id:
                        type: string
                  pushName:
                    type: string
                  status:
                    type: string
                    enum:
                      - ERROR
                      - PENDING
                      - SERVER_ACK
                      - DELIVERY_ACK
                      - READ
                      - PLAYED
                  message:
                    type: object
                    description: >-
                      Status content. For a text status an extendedTextMessage
                      is present.
                    properties:
                      extendedTextMessage:
                        type: object
                        properties:
                          text:
                            type: string
                          backgroundArgb:
                            type: integer
                            description: Background color as ARGB integer.
                          font:
                            type: integer
                            description: Font enum index.
                  contextInfo:
                    type:
                      - object
                      - 'null'
                  messageType:
                    type: string
                  messageTimestamp:
                    type: integer
                  instanceId:
                    type: string
                  source:
                    type: string
              example:
                key:
                  remoteJid: status@broadcast
                  fromMe: true
                  id: 3EB0STATUS112233445566
                pushName: Você
                status: PENDING
                message:
                  extendedTextMessage:
                    text: Promoção relâmpago hoje!
                    backgroundArgb: 4278190080
                    font: 3
                contextInfo: null
                messageType: extendedTextMessage
                messageTimestamp: 1720483440
                instanceId: a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d
                source: web
        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>`.

````