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

# List project exports



## OpenAPI

````yaml /openapi.json get /projects/{projectId}/exports
openapi: 3.1.0
info:
  title: Youka REST API
  version: v1
  description: REST API for project-based karaoke creation, styling, media, and exports.
servers:
  - url: https://api.youka.io/api/v1
    description: Production
  - url: http://localhost:3003/api/v1
    description: Local development
security:
  - bearerAuth: []
tags:
  - name: Account
    description: Inspect the API key's account identity.
  - name: Uploads
    description: Upload source audio or video before creating a project.
  - name: Credits
    description: Inspect available credit balance.
  - name: Billing
    description: Create checkout sessions and manage billing.
  - name: Projects
    description: Create projects and read the long-lived project state.
  - name: Tasks
    description: Poll async task progress until it reaches a terminal state.
  - name: Exports
    description: Create exports and fetch fresh download URLs.
  - name: Presets
    description: Manage reusable karaoke styling presets.
  - name: Media
    description: Manage uploaded reusable media.
  - name: Project Settings
    description: Read and update a project's active settings.
paths:
  /projects/{projectId}/exports:
    get:
      tags:
        - Exports
      summary: List project exports
      operationId: listProjectExports
      parameters:
        - in: path
          name: projectId
          required: true
          schema:
            type: string
        - in: query
          name: page
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
        - in: query
          name: pageSize
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 100
      responses:
        '200':
          description: Project export list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProjectExport'
components:
  schemas:
    ProjectExport:
      $schema: https://json-schema.org/draft/2020-12/schema
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
            - created
            - queued
            - in-progress
            - completed
            - failed
            - cancelled
            - timed-out
            - finalized
        fileId:
          anyOf:
            - type: string
            - type: 'null'
        fileKey:
          anyOf:
            - type: string
            - type: 'null'
        fileSize:
          anyOf:
            - type: number
            - type: 'null'
        createdAt:
          type: string
        updatedAt:
          type: string
        resolution:
          type: string
        quality:
          type: string
        fps:
          anyOf:
            - type: number
              const: 25
            - type: number
              const: 30
            - type: number
              const: 60
        transparent:
          type: boolean
        renderMode:
          type: string
          enum:
            - standard
            - fast
        renderBackend:
          type: string
          enum:
            - batch
            - lambda
      required:
        - id
        - status
        - createdAt
        - updatedAt
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````