> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-feat-openapi-i18n.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Post proxyvidumultiframe



## OpenAPI

````yaml /openapi/registry.ko.yaml post /proxy/vidu/multiframe
openapi: 3.0.2
info:
  title: Comfy API
  version: '1.0'
servers:
  - url: https://api.comfy.org
security: []
paths:
  /proxy/vidu/multiframe:
    post:
      tags:
        - API Nodes
        - Released
      operationId: ViduMultiframe
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ViduMultiframeRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ViduMultiframeReply'
          description: 성공
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: 오류 4xx/5xx
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: 오류 4xx/5xx
components:
  schemas:
    ViduMultiframeRequest:
      properties:
        callback_url:
          description: 작업 상태 업데이트를 위한 콜백 URL
          type: string
        image_settings:
          description: 지능형 멀티 프레임 생성 설정 (2-9 프레임)
          items:
            $ref: '#/components/schemas/ViduImageSetting'
          type: array
        model:
          description: 모델 이름 (viduq2-pro 또는 viduq2-turbo)
          type: string
        payload:
          description: 투명 전송 파라미터 (최대 1048576자)
          type: string
        resolution:
          description: 비디오 해상도 (540p, 720p, 1080p)
          type: string
        start_image:
          description: 첫 번째 프레임 이미지 (Base64 또는 URL)
          type: string
      required:
        - model
        - start_image
        - image_settings
      type: object
    ViduMultiframeReply:
      properties:
        created_at:
          format: date-time
          type: string
        credits:
          format: int32
          type: integer
        image_settings:
          items:
            $ref: '#/components/schemas/ViduImageSetting'
          type: array
        model:
          type: string
        payload:
          type: string
        resolution:
          type: string
        start_image:
          type: string
        state:
          $ref: '#/components/schemas/ViduState'
        task_id:
          type: string
      required:
        - task_id
        - state
        - credits
      type: object
    Error:
      properties:
        details:
          description: 오류에 대한 선택적 상세 정보 또는 해결을 위한 힌트.
          items:
            type: string
          type: array
        message:
          description: 오류에 대한 명확하고 간결한 설명.
          type: string
      type: object
    ViduImageSetting:
      properties:
        duration:
          description: 키 프레임 간 지속 시간(초) (2-7, 기본값 5)
          format: int32
          type: integer
        key_image:
          description: 각 키 프레임의 참조 이미지
          type: string
        prompt:
          description: 이전 프레임을 확장하기 위한 프롬프트
          type: string
      required:
        - key_image
      type: object
    ViduState:
      enum:
        - created
        - processing
        - queueing
        - success
        - failed
      type: string

````