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

# Stuttering Remove

> Detect and remove stuttering segments from audio using Whisper ASR. Returns processed audio file.



## OpenAPI

````yaml POST /v1/enhancer/stuttering/remove
openapi: 3.0.1
info:
  title: FineVoice API
  description: >-
    This is the documentation for the FineVoice API. If you have any questions
    or need assistance, please contact support@finevoice.ai.
  version: v1
servers:
  - url: https://apis.finevoice.ai
    description: FineVoice API Gateway
security:
  - BearerAuth: []
paths:
  /v1/enhancer/stuttering/remove:
    post:
      tags:
        - Audio Enhancer
      summary: Stuttering Remove
      description: >-
        Detect and remove stuttering segments from audio using Whisper ASR.
        Returns processed audio file.
      operationId: StutteringRemove
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StutteringRemoveRequest'
      responses:
        '200':
          description: Processed audio file returned.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized — invalid or missing API key.
        '422':
          description: Validation error — check request body fields.
components:
  schemas:
    StutteringRemoveRequest:
      type: object
      description: The stuttering removal request payload.
      properties:
        url:
          type: string
          description: Audio URL (http/https).
          example: https://example.com/audio.mp3
        whisper_model_size:
          type: string
          description: >-
            Whisper model size for stutter detection: `tiny`, `base`, `small`,
            or `medium`.
          default: base
        min_similarity:
          type: number
          minimum: 0.5
          maximum: 1
          description: Minimum similarity threshold for stutter detection.
          default: 0.75
        max_gap_ms:
          type: number
          minimum: 0
          description: Maximum gap between stutter repetitions in ms.
          default: 500
        output_format:
          type: string
          description: 'Output format: `wav`, `mp3`, `flac`, or `m4a`.'
          default: wav
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Bearer token (API key). Format: `Bearer {your_api_key}`'

````