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

# Vidu Q2 Turbo Digital Human

> [Core Function] Vidu Q2 Turbo Digital Human is a fast portrait animation model. [Strengths] It excels at quickly animating a static portrait image into a speaking or moving digital human, syncing lip movements to provided audio with low latency. [Best For] Highly recommended for: rapid generation of talking head videos, quick virtual presenters, and responsive interactive avatars. [Limitations] Do NOT use this model for complex full-body motion, multi-character interactions, or videos longer than 10 seconds. [Routing] Use this model when the user wants to make a portrait 'talk' quickly. For higher realism and better quality, route to Q2 Pro Digital Human.



## OpenAPI

````yaml /model-api/vidu/vidu-i2v.json post /vidu/viduq2-turbo-digital-human
openapi: 3.1.0
info:
  description: >-
    The image-to-video models API from Vidu. Includes standard I2V, first-last
    frame, reference-to-video, digital human, multi-frame animation, template
    story, and one-click film/ad generation.
  version: 1.0.0
  contact:
    name: Modellix Support
    email: support@modellix.ai
  title: Vidu Image-to-Video Models API
servers:
  - url: https://api.modellix.ai/api/v1
    description: The image-to-video models API from Vidu.
security:
  - bearerAuth: []
paths:
  /vidu/viduq2-turbo-digital-human:
    post:
      summary: Vidu Q2 Turbo Digital Human
      description: >-
        [Core Function] Vidu Q2 Turbo Digital Human is a fast portrait animation
        model. [Strengths] It excels at quickly animating a static portrait
        image into a speaking or moving digital human, syncing lip movements to
        provided audio with low latency. [Best For] Highly recommended for:
        rapid generation of talking head videos, quick virtual presenters, and
        responsive interactive avatars. [Limitations] Do NOT use this model for
        complex full-body motion, multi-character interactions, or videos longer
        than 10 seconds. [Routing] Use this model when the user wants to make a
        portrait 'talk' quickly. For higher realism and better quality, route to
        Q2 Pro Digital Human.
      operationId: viduQ2TurboDigitalHumanAsync
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ViduQ2DigitalHumanRequest'
            examples:
              basic:
                summary: Portrait image only
                value:
                  image_url: https://example.com/portrait.jpg
              with_prompt:
                summary: With motion description
                value:
                  image_url: https://example.com/presenter.jpg
                  prompt: >-
                    Presenter speaks confidently, making eye contact, gesturing
                    expressively with hands
              with_audio:
                summary: With audio for lip sync
                value:
                  image_url: https://example.com/spokesperson.jpg
                  audio_url: https://example.com/speech.mp3
                  resolution: 1080p
      responses:
        '200':
          description: Task submitted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncTaskResponse'
              example:
                code: 0
                message: success
                data:
                  status: pending
                  task_id: task-vidu-dh-001
                  model_id: vidu/viduq2-turbo-digital-human
                  get_result:
                    method: GET
                    url: https://api.modellix.ai/api/v1/tasks/task-vidu-dh-001
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    ViduQ2DigitalHumanRequest:
      type: object
      required:
        - image_url
      description: Vidu Q2 digital human request.
      properties:
        prompt:
          type: string
          minLength: 1
          maxLength: 2000
          description: Motion or speech description for the digital human
          example: Presenter speaks confidently, making eye contact with the camera
        image_url:
          type: string
          minLength: 1
          description: Portrait image URL or base64 data URI
          example: https://example.com/portrait.jpg
        audio_url:
          type: string
          minLength: 1
          description: >-
            Audio file URL. When provided, the digital human's lip movements
            will synchronize to this audio track.
          example: https://example.com/speech.mp3
        resolution:
          type: string
          enum:
            - 540p
            - 720p
            - 1080p
          default: 720p
          description: Video resolution
          example: 1080p
    AsyncTaskResponse:
      type: object
      required:
        - code
        - message
        - data
      properties:
        code:
          type: integer
          description: Response code, 0 indicates success
          example: 0
        message:
          type: string
          description: Response message
          example: success
        data:
          type: object
          required:
            - status
            - task_id
            - model_id
          properties:
            status:
              type: string
              enum:
                - pending
                - processing
              description: Task status
              example: pending
            task_id:
              type: string
              description: Unique task identifier for polling
              example: task-abc123
            model_id:
              type: string
              description: Model ID in `provider/model` format
              example: vidu/viduq3-pro-fast-i2v
            get_result:
              type: object
              description: API information to query the task result
              properties:
                method:
                  type: string
                  example: GET
                url:
                  type: string
                  example: https://api.modellix.ai/api/v1/tasks/task-abc123
          description: Detailed data about the submitted asynchronous task.
    ErrorResponse:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: integer
          example: 400
        message:
          type: string
          example: 'Invalid parameters: parameter ''first_frame_image'' is required'
  responses:
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 400
            message: 'Invalid parameters: parameter ''first_frame_image'' is required'
    Unauthorized:
      description: Unauthorized - Invalid or missing API Key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 401
            message: 'Authentication failed: invalid API key'
    TooManyRequests:
      description: Too many requests - Rate limit exceeded
      headers:
        X-RateLimit-Limit:
          description: Maximum requests per minute
          schema:
            type: integer
            example: 100
        X-RateLimit-Remaining:
          description: Remaining quota in current window
          schema:
            type: integer
            example: 0
        X-RateLimit-Reset:
          description: Rate limit window reset time (Unix timestamp)
          schema:
            type: integer
            example: 1704067260
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 429
            message: >-
              Rate limit exceeded: 100 requests per minute, retry after 60
              seconds
    InternalServerError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: 500
            message: Internal server error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API Key authentication. Format: `Bearer YOUR_API_KEY`.'

````