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

# Download Output

> Get a presigned download URL for a completed job's output.



## OpenAPI

````yaml GET /v1/jobs/{id}/download
openapi: 3.0.3
info:
  title: MediAPI
  description: >-
    Media processing API — video, audio, image, and document transformations via
    simple REST calls.
  version: 1.0.0
servers:
  - url: https://api.ringbee.dev
    description: Production
security:
  - apiKey: []
paths:
  /v1/jobs/{id}/download:
    get:
      tags:
        - Jobs
      summary: Download job output
      description: Get a presigned download URL for a completed job's output.
      operationId: downloadJobOutput
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: output
          in: query
          description: Output index (default 0)
          schema:
            type: integer
            default: 0
        - name: file
          in: query
          description: File index for multi-file outputs
          schema:
            type: integer
      responses:
        '200':
          description: Download URL
          content:
            application/json:
              schema:
                type: object
                properties:
                  download_url:
                    type: string
                  expires_in_seconds:
                    type: integer
                    example: 3600
                  filename:
                    type: string
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key

````