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

# Update editor project



## OpenAPI

````yaml /openapi/spec.json put /v1/projects
openapi: 3.0.0
info:
  title: VidJutsu API
  version: '2026-07-22'
  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. Kling 3.0 Motion Control is the supported clone-video model and
    preserves the source soundtrack.
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/projects:
    put:
      tags:
        - Editor Projects
      summary: Update editor project
      operationId: updateEditorProject
      parameters:
        - name: id
          in: query
          required: true
          schema:
            type: string
          explode: false
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EditorProjectUpdateRequest'
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EditorProjectUpdateResponse'
components:
  schemas:
    EditorProjectUpdateRequest:
      type: object
      properties:
        name:
          type: string
        status:
          $ref: '#/components/schemas/EditorProjectStatus'
        project:
          type: object
          additionalProperties: {}
        tags:
          type: array
          items:
            $ref: '#/components/schemas/Tag'
        metadata:
          type: object
          additionalProperties: {}
    EditorProjectUpdateResponse:
      type: object
      required:
        - projectId
        - updated
      properties:
        projectId:
          type: string
        updated:
          type: boolean
          enum:
            - true
    EditorProjectStatus:
      type: string
      enum:
        - draft
        - active
        - archived
    Tag:
      type: object
      required:
        - key
        - value
      properties:
        key:
          type: string
        value:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````