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

# Buscar status de mensagens

> Pesquisa atualizações de status de entrega/leitura de mensagens, opcionalmente filtradas por uma cláusula `where` e limitadas por `limit`.



## OpenAPI

````yaml openapi.evolution-v2.pt.json POST /chat/findStatusMessage/{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:
  /chat/findStatusMessage/{instance}:
    post:
      tags:
        - Chat
      summary: Buscar status de mensagens
      description: >-
        Pesquisa atualizações de status de entrega/leitura de mensagens,
        opcionalmente filtradas por uma cláusula `where` e limitadas por
        `limit`.
      operationId: post__chat_findStatusMessage_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: false
        content:
          application/json:
            schema:
              type: object
              properties:
                where:
                  type: object
                  description: >-
                    Filtro com `_id`, `remoteJid`, `id`, `fromMe`, `participant`
                    ou `status`.
                  example:
                    remoteJid: 5511999999999@s.whatsapp.net
                    status: READ
                where.status:
                  type: string
                  description: >-
                    Um dos valores `ERROR`, `PENDING`, `SERVER_ACK`,
                    `DELIVERY_ACK`, `READ`, `PLAYED`.
                limit:
                  type: integer
                  description: Número máximo de registros a serem retornados.
                  example: 20
      responses:
        '200':
          description: Sucesso — corpo de resposta nativo do provedor.
          content:
            application/json:
              schema:
                type: array
                description: >-
                  Stored MessageUpdate (delivery/read status) records for the
                  instance.
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      description: MessageUpdate record id (cuid).
                    keyId:
                      type: string
                      description: Message key id the status refers to.
                    remoteJid:
                      type: string
                      description: Chat JID of the message.
                    fromMe:
                      type: boolean
                      description: Whether the message was sent by this account.
                    participant:
                      type:
                        - string
                        - 'null'
                      description: Group participant JID, when applicable.
                    pollUpdates:
                      type:
                        - object
                        - 'null'
                      description: Poll vote updates payload, when applicable.
                    status:
                      type: string
                      description: >-
                        Status value, e.g. PENDING, SERVER_ACK, DELIVERY_ACK,
                        READ, DELETED.
                    messageId:
                      type: string
                      description: Related Message record id.
                    instanceId:
                      type: string
                      description: Owning instance id.
                  required:
                    - id
                    - keyId
                    - remoteJid
                    - fromMe
                    - status
                    - messageId
                    - instanceId
              example:
                - id: clzupd0011223344556677889
                  keyId: 3EB0C767D26A1D8A0F1B
                  remoteJid: 5511999999999@s.whatsapp.net
                  fromMe: true
                  participant: null
                  pollUpdates: null
                  status: DELIVERY_ACK
                  messageId: clzmsg0012233445566778899
                  instanceId: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                - id: clzupd0022334455667788990
                  keyId: 3EB0C767D26A1D8A0F1B
                  remoteJid: 5511999999999@s.whatsapp.net
                  fromMe: true
                  participant: null
                  pollUpdates: null
                  status: READ
                  messageId: clzmsg0012233445566778899
                  instanceId: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        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>`.

````