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

# List Dubbing Jobs

> Return a paginated list of dubbing jobs belonging to the authenticated customer. Cancelled jobs are excluded.



## OpenAPI

````yaml /managed-dub.openapi.json get /dubbing/jobs
openapi: 3.1.0
info:
  title: Deepdub Managed Dubbing API
  description: >-
    Public REST API for submitting videos for AI-assisted dubbing, tracking job
    status, and managing deliverables.
  version: 1.0.0
servers:
  - url: https://dubbing.deepdub.app
security:
  - ApiKeyAuth: []
paths:
  /dubbing/jobs:
    get:
      summary: List Dubbing Jobs
      description: >-
        Return a paginated list of dubbing jobs belonging to the authenticated
        customer. Cancelled jobs are excluded.
      operationId: list_dubbing_jobs_dubbing_jobs_get
      parameters:
        - required: false
          schema:
            type: string
            title: Next Token
          name: next_token
          in: query
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DubbingStatusListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DubbingStatusListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/DubbingStatusResponse'
          type: array
          title: Items
        nextToken:
          type: string
          title: Nexttoken
      type: object
      required:
        - items
      title: DubbingStatusListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DubbingStatusResponse:
      properties:
        requestId:
          type: string
          title: Requestid
        status:
          $ref: '#/components/schemas/ManagedDubProgressStatusEnum'
        detailedTrace:
          type: string
          title: Detailedtrace
        exportPath:
          type: string
          title: Exportpath
        additionalProducts:
          items:
            $ref: '#/components/schemas/DubbingSubmissionAdditionalProduct'
          type: array
          title: Additionalproducts
        metadata:
          additionalProperties:
            type: string
          type: object
          title: Metadata
      type: object
      required:
        - requestId
        - status
        - detailedTrace
        - exportPath
        - additionalProducts
        - metadata
      title: DubbingStatusResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    ManagedDubProgressStatusEnum:
      type: string
      enum:
        - INTAKE_PREPROCESSING
        - INTAKE_VALIDATION
        - INTAKE_FAILED
        - INTAKE_APPROVED
        - CASTING
        - ADAPTGEN_START
        - ADAPTGEN_MIDWAY
        - READY_FOR_QC
        - QC
        - QC_IN_REVIEW
        - ADAPTGEN_QC_FIX
        - READY_FOR_DMX
        - DMX_DONE
        - READY_FOR_MIXING
        - MIXING_IN_PROGRESS
        - READY_FOR_MIX_QC
        - MIX_QC_IN_PROGRESS
        - DELIVERED_TO_CLIENT
        - CLIENT_REFIX_PROCESSING
        - CLIENT_REFIX_REJECTED
        - CLIENT_REFIX
        - FAILURE
        - READY_FOR_REDMX
        - PARKED_REQUEST
        - PARKED_REQUEST_RECEIVED
        - REDMX_DONE
        - REDELIVERED_TO_CLIENT
      title: ManagedDubProgressStatusEnum
      description: >-
        Lifecycle status of a dubbing job, from initial intake through delivery
        and optional client re-fixes.
    DubbingSubmissionAdditionalProduct:
      properties:
        product:
          allOf:
            - $ref: '#/components/schemas/AdditionalProductsEnum'
          description: >-
            Type of product to deliver (e.g., 'SDH', 'SRT', 'WEBVTT',
            'TRANSCRIPT')
        assetPath:
          type: string
          title: Assetpath
          description: >-
            S3 path to the asset file (must start with 's3://', e.g.,
            's3://bucket/asset.mp4')
        state:
          allOf:
            - $ref: '#/components/schemas/AdditionalProductStateEnum'
          description: >-
            Delivery state: None means pending delivery, DELIVERED means already
            delivered.
      type: object
      required:
        - product
        - assetPath
      title: DubbingSubmissionAdditionalProduct
    AdditionalProductsEnum:
      type: string
      enum:
        - SDH
        - SRT
        - WEBVTT
        - TRANSCRIPT
        - AS_RECORDED_SCRIPT
        - AUDIO_HINTS
        - SOURCE_VIDEO
        - SOURCE_AUDIO
        - ITT_SUBTITLES
      title: AdditionalProductsEnum
      description: >-
        Type of deliverable product that can be requested alongside (or instead
        of) the dubbed video.
    AdditionalProductStateEnum:
      type: string
      enum:
        - PENDING_DELIVERY
        - DELIVERED
      title: AdditionalProductStateEnum
      description: >-
        State of an additional product in the delivery lifecycle.


        None   – legacy / unknown (pre-deployment products, not shown as
        pending).

        PENDING_DELIVERY – explicitly awaiting delivery.

        DELIVERED        – already delivered to the customer.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key issued by Deepdub. Contact your account manager to obtain one.

````