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

# Poll a clone video task

> Returns the current status of a clone video task owned by the caller. While status is "processing", poll again later; on "completed" the videoUrl field carries the HTTPS result URL, and on "failed" the error field explains why. Unknown ids and other tenants' ids return 404. Status reads are not billed.



## OpenAPI

````yaml /openapi/spec.json get /v1/clones/video/{id}
openapi: 3.0.0
info:
  title: VidJutsu API
  version: '2026-07-20'
  description: >-
    VidJutsu is a video API built for agents to operate directly. Your agent can
    clone viral trending skits now: stage a trending clip with
    /v1/videos/download/tiktok or /v1/videos/download/instagram, check it for
    cloneability, generate a character and a clean starting frame, then render
    the clone. The pipeline runs end to end in about 5 minutes, measured. Kling
    motion control is the default video model; Seedance is the alternate. Clone
    video output is 480p 9:16.
servers:
  - url: https://api.vidjutsu.ai
    description: Production
    variables: {}
security:
  - BearerAuth: []
tags:
  - name: Assets
  - name: Editor Projects
  - name: Scrape
  - name: Videos
  - name: Billing
  - name: API Keys
  - name: Usage
  - name: Info
  - name: Pricing
  - name: Subscriptions
  - name: Auth
  - name: Accounts
  - name: Posts
  - name: References
  - name: Upload
  - name: Watch
  - name: Extract
  - name: Transcribe
  - name: Check
  - name: Compliance
  - name: Overlay
  - name: Disclaimer
  - name: Agent
  - name: Characters
  - name: Cloning
    description: >-
      Your agent can Clone Viral Trending Skits Now. These endpoints check
      whether a staged source video is worth cloning, generate the character and
      starting frame, and render and poll the final clone video.
paths:
  /v1/clones/video/{id}:
    get:
      tags:
        - Cloning
      summary: Poll a clone video task
      description: >-
        Returns the current status of a clone video task owned by the caller.
        While status is "processing", poll again later; on "completed" the
        videoUrl field carries the HTTPS result URL, and on "failed" the error
        field explains why. Unknown ids and other tenants' ids return 404.
        Status reads are not billed.
      operationId: getCloneVideo
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloneVideoStatusResponse'
        '403':
          description: >-
            HTTP 403 Forbidden — a valid API key with no active subscription
            called a gated endpoint. Body is the standard ApiError with
            error="subscription_required".
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
components:
  schemas:
    CloneVideoStatusResponse:
      type: object
      required:
        - id
        - status
      properties:
        id:
          type: string
          description: Clone task id.
        status:
          allOf:
            - $ref: '#/components/schemas/CloneVideoStatus'
          description: Current task status.
        videoUrl:
          type: string
          format: uri
          description: >-
            HTTPS URL of the finished clone. Present only when status is
            "completed".
        error:
          type: string
          description: Failure explanation. Present only when status is "failed".
    ApiError:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: string
        message:
          type: string
        setup:
          type: string
    CloneVideoStatus:
      type: string
      enum:
        - processing
        - completed
        - failed
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````