> ## Documentation Index
> Fetch the complete documentation index at: https://docs.notifique.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Listar recebidos Telegram

> Mostra Telegram que chegaram — respostas ou mensagens de clientes.



## OpenAPI

````yaml /telegram-api/api-reference/openapi-telegram.json get /v1/telegram/messages/inbound
openapi: 3.0.3
info:
  title: Notifique API — Telegram
  description: >-
    Envie mensagens Telegram e gerencie conexões. Autentique com `Authorization:
    Bearer sk_live_...` ou `x-api-key`.
  version: 1.0.0
servers:
  - url: https://api.notifique.dev
    description: Produção
security:
  - ntfTgBearerAuth: []
  - ntfTgApiKeyHeader: []
tags:
  - name: Mensagens
    description: Enviar e gerenciar mensagens
  - name: Instâncias
    description: Criar e conectar bots ou contas USER
  - name: Chats
    description: Listar chats
paths:
  /v1/telegram/messages/inbound:
    get:
      tags:
        - Mensagens
      summary: Listar recebidos Telegram
      description: Mostra Telegram que chegaram — respostas ou mensagens de clientes.
      operationId: ntfTg_getV1TelegramInbound
      parameters:
        - name: page
          in: query
          description: Página.
          schema:
            type: string
        - name: limit
          in: query
          description: Itens por página.
          schema:
            type: string
        - name: q
          in: query
          description: Busca no texto da prévia ou no JSON bruto.
          schema:
            type: string
        - name: instanceId
          in: query
          description: Restringir a uma instância.
          schema:
            type: string
        - name: dateFrom
          in: query
          description: Recebidos a partir de (ISO 8601).
          schema:
            type: string
        - name: dateTo
          in: query
          description: Recebidos até (ISO 8601).
          schema:
            type: string
      responses:
        '200':
          description: >-
            Lista em `data` (`id`, `instanceId`, `receivedAt`, `message`,
            `preview` igual a `message`, `fromLabel`) e `pagination`. Sem JSON
            bruto.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfTg_InboundListEnvelope'
              example:
                success: true
                data:
                  - id: clxx_in_1
                    instanceId: clxx_inst
                    receivedAt: '2026-04-12T15:00:00.000Z'
                    message: 'Texto: Olá bot'
                    preview: 'Texto: Olá bot'
                    fromLabel: '@usuario'
                pagination:
                  total: 1
                  page: 1
                  limit: 20
                  totalPages: 1
        '401':
          description: Chave ausente ou inválida.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfTg_ErrorResponse'
              example:
                success: false
                error: Unauthorized
                message: Invalid or missing API Key
                code: UNAUTHORIZED
        '402':
          description: Workspace suspenso ou plano expirado.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfTg_ErrorResponse'
              example:
                success: false
                error: Payment Required
                message: Plan expired or suspended
                code: WORKSPACE_BLOCKED
        '403':
          description: Sem escopo ou `instanceId` não permitido para esta chave.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfTg_ErrorResponse'
              examples:
                scope:
                  value:
                    success: false
                    error: Forbidden
                    message: 'Missing scope: telegram:read'
                    code: FORBIDDEN
                instance:
                  value:
                    success: false
                    error: Forbidden
                    message: >-
                      Access denied to instance: clxx.... Check API key instance
                      restrictions.
                    code: FORBIDDEN
components:
  schemas:
    NtfTg_InboundListEnvelope:
      type: object
      required:
        - success
        - data
        - pagination
      properties:
        success:
          type: boolean
        data:
          type: array
          items:
            $ref: '#/components/schemas/NtfTg_InboundRow'
        pagination:
          $ref: '#/components/schemas/NtfTg_Pagination'
    NtfTg_ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          description: 'Rótulo HTTP do erro (ex.: Unauthorized, Bad Request, Not Found).'
        message:
          type: string
          description: >-
            Mensagem legível para exibir ao usuário (localizada via
            Accept-Language / x-locale quando aplicável).
        code:
          type: string
          description: >-
            Código estável da API v1 (enum). Sempre presente em erros. Use com o
            status HTTP para decidir retry ou correção. Ver [Respostas de
            erro](/guides/conceitos/resposta-de-erros).
        details:
          type: array
          items:
            type: object
            properties:
              field:
                type: string
              message:
                type: string
      required:
        - success
        - error
        - message
        - code
    NtfTg_InboundRow:
      type: object
      properties:
        id:
          type: string
        instanceId:
          type: string
        receivedAt:
          type: string
          format: date-time
        message:
          type: string
        preview:
          type: string
          description: Igual a `message` (retrocompatibilidade).
        fromLabel:
          type: string
          description: Rótulo do remetente (@username, nome ou chat).
    NtfTg_Pagination:
      type: object
      properties:
        total:
          type: integer
        page:
          type: integer
        limit:
          type: integer
        totalPages:
          type: integer
  securitySchemes:
    ntfTgBearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'Authorization: Bearer sk_live_xxxxx'
    ntfTgApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````