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

# Create Retake Removal

> Dispatch a retake-removal analysis on an uploaded project source.

Idempotent on command_id=`retake_removal`: replaying the request after
the first call returns the existing command's current status without
re-charging or re-dispatching.



## OpenAPI

````yaml /openapi.json post /v1/projects/{project_id}/retake-removal
openapi: 3.1.0
info:
  title: NanoClip Public API
  version: 0.1.0
  description: >-
    Upload video or audio and extract transcript, speaker, face, scene, and
    retake intelligence.
servers:
  - url: https://api.nanoclip.ai
security: []
paths:
  /v1/projects/{project_id}/retake-removal:
    post:
      summary: Create Retake Removal
      description: |-
        Dispatch a retake-removal analysis on an uploaded project source.

        Idempotent on command_id=`retake_removal`: replaying the request after
        the first call returns the existing command's current status without
        re-charging or re-dispatching.
      operationId: create_retake_removal_v1_projects__project_id__retake_removal_post
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            title: Project Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RetakeRemovalRequest'
      responses:
        '202':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetakeRemovalCommandResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    RetakeRemovalRequest:
      properties:
        language:
          type: string
          enum:
            - bg
            - cs
            - da
            - de
            - el
            - en
            - es
            - et
            - fi
            - fr
            - he
            - hr
            - hu
            - it
            - lt
            - lv
            - mt
            - nl
            - pl
            - pt
            - ro
            - ru
            - sk
            - sl
            - sv
            - uk
          title: Language
          description: >-
            Transcript language base tag. Use one of the supported values, such
            as en or he.
          examples:
            - en
            - he
      additionalProperties: false
      type: object
      required:
        - language
      title: RetakeRemovalRequest
      description: |-
        Request body for POST /v1/projects/{id}/retake-removal.

        Intentionally minimal: language is the only knob. The LLM model is
        server-side.
    RetakeRemovalCommandResponse:
      properties:
        project_id:
          type: string
          title: Project Id
        analysis:
          type: string
          const: retake_removal
          title: Analysis
        status:
          $ref: '#/components/schemas/AnalysisCommandStatus'
        created_at:
          type: string
          title: Created At
      type: object
      required:
        - project_id
        - analysis
        - status
        - created_at
      title: RetakeRemovalCommandResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AnalysisCommandStatus:
      type: string
      enum:
        - queued
        - processing
        - completed
      title: AnalysisCommandStatus
      description: |-
        202 dispatch acknowledgment for an analysis command.

        ``failed`` is deliberately absent: a failed command never reaches this
        wire — the POST either re-dispatches (idempotent retry) or raises 503
        (see _existing_command_response's gate).
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````