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

# List projects or get by ID

> Returns a single project if ?id= is provided, or a list. Filter by ?status= or ?tag.key=value.



## OpenAPI

````yaml /openapi/spec.json get /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:
    get:
      tags:
        - Editor Projects
      summary: List projects or get by ID
      description: >-
        Returns a single project if ?id= is provided, or a list. Filter by
        ?status= or ?tag.key=value.
      operationId: listOrGetEditorProjects
      parameters:
        - name: id
          in: query
          required: false
          schema:
            type: string
          explode: false
        - name: status
          in: query
          required: false
          schema:
            type: string
          explode: false
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                anyOf:
                  - $ref: '#/components/schemas/EditorProject'
                  - $ref: '#/components/schemas/EditorProjectListResponse'
components:
  schemas:
    EditorProject:
      type: object
      required:
        - projectId
        - clientId
        - name
        - status
        - createdAt
        - updatedAt
      properties:
        projectId:
          type: string
        clientId:
          type: string
        name:
          type: string
        project:
          type: object
          additionalProperties: {}
          description: >-
            The serializable timeline document (Twick ProjectJSON: tracks,
            assets,

            metadata, version). Stored opaquely; the editor owns its shape.
        tags:
          type: array
          items:
            $ref: '#/components/schemas/Tag'
        metadata:
          type: object
          additionalProperties: {}
        status:
          $ref: '#/components/schemas/EditorProjectStatus'
        createdAt:
          type: integer
          format: int64
        updatedAt:
          type: integer
          format: int64
    EditorProjectListResponse:
      type: object
      required:
        - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/EditorProject'
    Tag:
      type: object
      required:
        - key
        - value
      properties:
        key:
          type: string
        value:
          type: string
    EditorProjectStatus:
      type: string
      enum:
        - draft
        - active
        - archived
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````