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

# List movie assets

> List generated assets for a movie, including the final export when ready.



## OpenAPI

````yaml /openapi/keyframe.v1.yaml get /movies/{movie_id}/assets
openapi: 3.1.0
info:
  title: Keyframe API
  version: 1.0.0
  summary: Create generated movies from prompts and references.
  description: |
    The Keyframe API creates generated movies from creative briefs, reference
    media, and production constraints.

    This specification describes a proposed public v1 API and may change before
    public availability.
servers:
  - url: https://api.keyframe.art/v1
    description: Production
security:
  - bearerAuth: []
tags:
  - name: References
    description: Upload and manage durable reference media.
  - name: Movies
    description: Create, inspect, cancel, and retrieve movie jobs.
paths:
  /movies/{movie_id}/assets:
    get:
      tags:
        - Movies
      summary: List movie assets
      description: >-
        List generated assets for a movie, including the final export when
        ready.
      operationId: listMovieAssets
      parameters:
        - $ref: '#/components/parameters/MovieId'
      responses:
        '200':
          description: Generated assets.
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/MovieAsset'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    MovieId:
      name: movie_id
      in: path
      required: true
      description: Movie ID.
      schema:
        type: string
        pattern: ^movie_[A-Za-z0-9]+$
  schemas:
    MovieAsset:
      type: object
      required:
        - id
        - type
        - url
        - created_at
      properties:
        id:
          type: string
          examples:
            - asset_abc123
        type:
          type: string
          enum:
            - final_video
            - storyboard_frame
            - video_clip
            - audio_track
            - metadata
        url:
          type: string
          format: uri
          description: Temporary signed URL for downloading the asset.
        mime_type:
          type: string
          examples:
            - video/mp4
        width:
          type: integer
          nullable: true
        height:
          type: integer
          nullable: true
        duration_seconds:
          type: number
          nullable: true
        created_at:
          type: string
          format: date-time
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          $ref: '#/components/schemas/ErrorObject'
    ErrorObject:
      type: object
      required:
        - code
        - message
        - request_id
      properties:
        code:
          type: string
          examples:
            - invalid_request
        message:
          type: string
        request_id:
          type: string
          examples:
            - req_abc123
  responses:
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````