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

# Archive editor project (soft)



## OpenAPI

````yaml /openapi/spec.json delete /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:
    delete:
      tags:
        - Editor Projects
      summary: Archive editor project (soft)
      operationId: deleteEditorProject
      parameters:
        - name: id
          in: query
          required: true
          schema:
            type: string
          explode: false
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EditorProjectDeleteResponse'
components:
  schemas:
    EditorProjectDeleteResponse:
      type: object
      required:
        - id
        - status
      properties:
        id:
          type: string
        status:
          type: string
          enum:
            - archived
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````