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

# Get Retake Removal

> Return retake-removal decisions for a project.

Status surfaces: queued / running / completed / failed. Decisions
(words/remove_spans/keep_intervals) are populated only when
status == "completed". The runner persists decisions at
workspaces/{ws}/jobs/{job}/artifacts/retake_removal/decisions.json.



## OpenAPI

````yaml /openapi.json get /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:
    get:
      summary: Get Retake Removal
      description: |-
        Return retake-removal decisions for a project.

        Status surfaces: queued / running / completed / failed. Decisions
        (words/remove_spans/keep_intervals) are populated only when
        status == "completed". The runner persists decisions at
        workspaces/{ws}/jobs/{job}/artifacts/retake_removal/decisions.json.
      operationId: get_retake_removal_v1_projects__project_id__retake_removal_get
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            title: Project Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RetakeRemovalResultResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    RetakeRemovalResultResponse:
      properties:
        project_id:
          type: string
          title: Project Id
        status:
          $ref: '#/components/schemas/AnalysisResultStatus'
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        words:
          items:
            $ref: '#/components/schemas/RetakeRemovalWord'
          type: array
          title: Words
        remove_spans:
          items:
            $ref: '#/components/schemas/RetakeRemovalSpan'
          type: array
          title: Remove Spans
        keep_intervals:
          items:
            $ref: '#/components/schemas/RetakeRemovalKeepInterval'
          type: array
          title: Keep Intervals
      type: object
      required:
        - project_id
        - status
      title: RetakeRemovalResultResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AnalysisResultStatus:
      type: string
      enum:
        - queued
        - processing
        - completed
        - failed
      title: AnalysisResultStatus
      description: Analysis lifecycle as reported by the result GET endpoints.
    RetakeRemovalWord:
      properties:
        i:
          type: integer
          title: I
        start:
          type: number
          title: Start
        end:
          type: number
          title: End
        text:
          type: string
          title: Text
        confidence:
          type: number
          title: Confidence
        source:
          type: string
          title: Source
      type: object
      required:
        - i
        - start
        - end
        - text
        - confidence
        - source
      title: RetakeRemovalWord
    RetakeRemovalSpan:
      properties:
        remove_word_start:
          type: integer
          title: Remove Word Start
        remove_word_end:
          type: integer
          title: Remove Word End
      type: object
      required:
        - remove_word_start
        - remove_word_end
      title: RetakeRemovalSpan
    RetakeRemovalKeepInterval:
      properties:
        start:
          type: number
          title: Start
        end:
          type: number
          title: End
      type: object
      required:
        - start
        - end
      title: RetakeRemovalKeepInterval
    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

````