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

# Descargar media recibida (archivo)

> Descarga la media como archivo — ideal para curl o scripts.



## OpenAPI

````yaml /es/telegram-api/api-reference/openapi-telegram.json get /v1/telegram/messages/inbound/{id}/media/download
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}/media/download:
    get:
      tags:
        - Mensagens
      summary: Descargar media recibida (archivo)
      description: Descarga la media como archivo — ideal para curl o scripts.
      operationId: ntfTg_getV1TelegramInboundMediaDownload
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            example: clxx_in_1
      responses:
        '200':
          description: >-
            Arquivo binário. Respuesta binária (não JSON). Use `Content-Type` e
            `Content-Disposition` do header.
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
        '400':
          description: Sem mídia baixável.
        '401':
          description: No autorizado.
        '403':
          description: Escopo ou instancia.
        '404':
          description: Inbound não encontrado.
        '502':
          description: Falha ao baixar no Telegram.
components:
  securitySchemes:
    ntfTgBearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'Authorization: Bearer sk_live_xxxxx'
    ntfTgApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````