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

# Consultar recibido Telegram

> Consulta los detalles de un mensaje recibido.



## OpenAPI

````yaml /es/telegram-api/api-reference/openapi-telegram.json get /v1/telegram/messages/inbound/{id}
openapi: 3.0.3
info:
  title: Notifique API — Telegram
  description: >-
    Envíe mensajes de Telegram y gestione conexiones. Autentíquese con
    `Authorization: Bearer sk_live_...` o `x-api-key`.
  version: 1.0.0
servers:
  - url: https://api.notifique.dev
    description: Producción
security:
  - ntfTgBearerAuth: []
  - ntfTgApiKeyHeader: []
tags:
  - name: Mensajes
    description: Enviar y gestionar mensajes
  - name: Instancias
    description: Crear y conectar bots o cuentas USER
  - name: Chats
    description: Listar chats
paths:
  /v1/telegram/messages/inbound/{id}:
    get:
      tags:
        - Mensagens
      summary: Consultar recibido Telegram
      description: Consulta los detalles de un mensaje recibido.
      operationId: ntfTg_getV1TelegramInboundById
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Objeto completo em `data`.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfTg_InboundDetailEnvelope'
              example:
                success: true
                data:
                  id: clxx_in_1
                  instanceId: clxx_inst
                  receivedAt: '2026-04-12T15:00:00.000Z'
                  message: 'Texto: Olá'
                  preview: 'Texto: Olá'
                  fromUsername: usuario
                  contentPreview:
                    kind: image
                    summaryLine: Image
                  mediaFetch:
                    fetchable: true
                    kind: image
        '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 instancia do registro não permitida.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfTg_ErrorResponse'
              example:
                success: false
                error: Forbidden
                message: Access to this instance is not allowed by this API Key
                code: FORBIDDEN
        '404':
          description: ID inexistente ou ID muito curto.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfTg_ErrorResponse'
              example:
                success: false
                error: Not Found
                message: Registro não encontrado
                code: NOT_FOUND
components:
  schemas:
    NtfTg_InboundDetailEnvelope:
      type: object
      required:
        - success
        - data
      properties:
        success:
          type: boolean
        data:
          $ref: '#/components/schemas/NtfTg_InboundDetailData'
    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: >-
            Mensaje 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 [Respuestas 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_InboundDetailData:
      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).
        fromUsername:
          type: string
          nullable: true
  securitySchemes:
    ntfTgBearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'Authorization: Bearer sk_live_xxxxx'
    ntfTgApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````