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

# List API jobs

> Paginated list of jobs you submitted (translate-and-dub, TTS, text translation, voice clone). Filter by `taskType` and `status`. Scoped to your **API Key**. Async deliverables still arrive via [Webhooks](/guides/webhooks) — use this endpoint to browse history or reconcile missed callbacks.



## OpenAPI

````yaml /api-reference/openapi.json get /openapi/v1/tasks/list
openapi: 3.1.0
info:
  title: VMEG Open API
  description: >-
    Integrate VMEG into your product: translate and dub video or audio,
    synthesize speech, clone voices, translate plain text, and manage API-side
    files. All responses use `{ code, message, data }`; `code === 200` means
    success.
  version: 1.0.0
servers:
  - url: https://api.vmeg.ai
    description: Production
security:
  - apiKeyAuth: []
tags:
  - name: Media translation
    x-group: Video & audio translate and dub
    description: >-
      Localize uploaded video or audio end-to-end: transcribe speech, translate
      the script, generate AI dubbing (cloned or preset voices), and return new
      dubbed media. Optional subtitles and lip sync. **Async only** — dubbed
      files arrive via [Webhook](/guides/webhooks). This is not plain text
      translation; see [Media translation](/guides/products/media-translation).
  - name: TTS
    x-group: Text to speech (TTS)
    description: >-
      Turn text into natural speech with preset or cloned voices. **Sync**
      returns audio URLs in the HTTP response; **async** delivers results via
      [Webhook](/guides/webhooks). See [Text to
      speech](/guides/products/text-to-speech).
  - name: Voice clone
    x-group: Voice cloning
    description: >-
      Create a reusable voice from a short reference recording. Returns a
      `voiceId` you can pass to TTS or translate-and-dub jobs. See [Voice
      clone](/guides/products/voice-clone).
  - name: Text translation
    x-group: Text translation (text only)
    description: >-
      Translate plain text segments — no audio or video processing. For spoken
      content in media files, use **Video & audio translate and dub** instead.
      See [Text translation](/guides/products/text-translation).
  - name: Task management
    x-group: Task status and history
    description: >-
      List, inspect, or delete jobs created through any product API. Poll `GET
      .../tasks/detail` when you cannot rely on webhooks. Scoped to your **API
      Key**. See [Products overview](/guides/products/overview).
  - name: Assets - Materials
    x-group: Upload files (materials)
    description: >-
      Upload and manage video/audio files used as input for translate-and-dub
      jobs. Flow: finish the full upload (presigned or multipart → register) →
      pass the registered `materialId` to create-async. See [Material
      upload](/guides/assets/material-upload).
  - name: Assets - Voices
    x-group: Voices (presets and clones)
    description: >-
      List preset voices for TTS, or manage voices you cloned. Cloned voices are
      created via **Voice cloning**. See [Voices](/guides/assets/voices).
paths:
  /openapi/v1/tasks/list:
    get:
      tags:
        - Task management
      summary: List API jobs
      description: >-
        Paginated list of jobs you submitted (translate-and-dub, TTS, text
        translation, voice clone). Filter by `taskType` and `status`. Scoped to
        your **API Key**. Async deliverables still arrive via
        [Webhooks](/guides/webhooks) — use this endpoint to browse history or
        reconcile missed callbacks.
      operationId: tasksList
      parameters:
        - name: taskType
          in: query
          schema:
            $ref: '#/components/schemas/OpenApiTaskType'
          description: Filter by task type
        - name: status
          in: query
          schema:
            type: string
          description: Filter by task status
        - name: currentPage
          in: query
          schema:
            type: integer
            default: 1
          description: Page number (1-based)
        - name: pageSize
          in: query
          schema:
            type: integer
            default: 20
          description: Page size
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenApiTaskListResponse'
components:
  schemas:
    OpenApiTaskType:
      type: string
      description: >-
        Open API task type code. For media translation create request, use
        `taskType` codes `vt` (video translation) or `at` (audio translation).
      enum:
        - vt
        - at
        - tts
        - cloneVoice
        - textTranslation
      example: vt
    OpenApiTaskListResponse:
      allOf:
        - $ref: '#/components/schemas/OpenApiResponseBase'
        - type: object
          properties:
            data:
              $ref: '#/components/schemas/OpenApiTaskListData'
    OpenApiResponseBase:
      type: object
      properties:
        code:
          type: integer
          example: 200
          description: Business code; 200 means success
        message:
          type: string
          example: ''
          description: Human-readable detail when `code` is not success
      required:
        - code
    OpenApiTaskListData:
      type: object
      properties:
        records:
          type: array
          items:
            $ref: '#/components/schemas/OpenApiTaskSummary'
          description: Tasks on this page
        total:
          type: integer
          format: int64
          description: Total tasks matching the query
    OpenApiTaskSummary:
      type: object
      properties:
        taskId:
          type: string
          description: Open API task ID
        taskType:
          $ref: '#/components/schemas/OpenApiTaskType'
        status:
          type: string
          description: Task status
        createdAt:
          type: string
          description: Task creation time (ISO 8601)
        updatedAt:
          type: string
          description: Last update time (ISO 8601)
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: >-
        Send your API Key in the **`Authorization`** header (`Bearer
        <api_key>`). See [Authentication](/guides/authentication).

````