---
title: "OutputFile"
url: "https://docs.api.pruna.ai/apis/models-api-0/versions/e82c070d-36fc-4aa3-b8cc-8140e0221f53/schemas/OutputFile"
---

> Full API specification: https://docs.api.pruna.ai/apis/models-api-0/versions/e82c070d-36fc-4aa3-b8cc-8140e0221f53.md

# OutputFile

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: P-API
  version: 0.1.0
servers:
  - url: https://api.pruna.ai
    description: Production server
components:
  schemas:
    OutputFile:
      type: object
      required:
        - url
        - filename
        - content_type
      properties:
        url:
          type: string
          description: Relative URL path for downloading the generated content file
          example: /v1/predictions/delivery/xezq/52UGYRrRfqViaKmvYsEnENTh0qLDAWHptQ8jOnEHu7XC6AtKA/output.mp4
        filename:
          type: string
          description: Filename of the generated content
          example: output.mp4
        content_type:
          type: string
          description: MIME type of the generated content (e.g., image/jpeg, video/mp4)
          example: video/mp4
        size:
          type: integer
          description: File size in bytes
          example: 15728640
```
