> ## 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 proxyviduextend



## OpenAPI

````yaml /openapi/registry.ko.yaml post /proxy/vidu/extend
openapi: 3.0.2
info:
  title: Comfy API
  version: '1.0'
servers:
  - url: https://api.comfy.org
security: []
paths:
  /proxy/vidu/extend:
    post:
      tags:
        - API Nodes
        - Released
      operationId: ViduExtend
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ViduExtendRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ViduExtendReply'
          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:
    ViduExtendRequest:
      properties:
        callback_url:
          description: 작업 상태 업데이트를 위한 콜백 URL
          type: string
        duration:
          description: 연장된 지속 시간(초) (1-7, 기본값 5)
          format: int32
          type: integer
        images:
          description: 종료 프레임에 대한 연장된 참조 이미지 (이미지 1개만 허용)
          items:
            type: string
          type: array
        model:
          description: 모델 이름 (viduq2-pro 또는 viduq2-turbo)
          type: string
        payload:
          description: 투명 전송 파라미터 (최대 1048576자)
          type: string
        prompt:
          description: 비디오 생성을 위한 텍스트 프롬프트 (최대 2000자)
          type: string
        resolution:
          description: 해상도 (540p, 720p, 1080p)
          type: string
        video_creation_id:
          description: Vidu video_creation_id, video_url과 함께 필수
          type: string
        video_url:
          description: 모든 비디오 URL, video_creation_id와 함께 필수
          type: string
      required:
        - model
      type: object
    ViduExtendReply:
      properties:
        created_at:
          format: date-time
          type: string
        credits:
          format: int32
          type: integer
        duration:
          format: int32
          type: integer
        images:
          items:
            type: string
          type: array
        model:
          type: string
        payload:
          type: string
        prompt:
          type: string
        resolution:
          type: string
        state:
          $ref: '#/components/schemas/ViduState'
        task_id:
          type: string
        video_creation_id:
          type: string
        video_url:
          type: string
      required:
        - task_id
        - state
        - credits
      type: object
    Error:
      properties:
        details:
          description: 오류에 대한 선택적 상세 정보 또는 해결을 위한 힌트.
          items:
            type: string
          type: array
        message:
          description: 오류에 대한 명확하고 간결한 설명.
          type: string
      type: object
    ViduState:
      enum:
        - created
        - processing
        - queueing
        - success
        - failed
      type: string

````