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



## OpenAPI

````yaml /openapi.json post /v1/projects/{project_id}/transcript
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}/transcript:
    post:
      summary: Create Transcript
      operationId: create_transcript_v1_projects__project_id__transcript_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/TranscriptionRequest'
      responses:
        '202':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TranscriptCommandResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    TranscriptionRequest:
      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
        requested_outputs:
          items:
            type: string
            enum:
              - text
              - speakers
              - utterances
              - words
          type: array
          title: Requested Outputs
        diarize:
          type: boolean
          title: Diarize
          description: Request speaker diarization. Billed separately at $0.05/audio-hour.
          default: false
      type: object
      required:
        - language
      title: TranscriptionRequest
    TranscriptCommandResponse:
      properties:
        project_id:
          type: string
          title: Project Id
        analysis:
          type: string
          const: transcript
          title: Analysis
        status:
          $ref: '#/components/schemas/AnalysisCommandStatus'
        requested_outputs:
          items:
            type: string
            enum:
              - text
              - speakers
              - utterances
              - words
          type: array
          title: Requested Outputs
        created_at:
          type: string
          title: Created At
      type: object
      required:
        - project_id
        - analysis
        - status
        - requested_outputs
        - created_at
      title: TranscriptCommandResponse
    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

````