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

# Remove Mouth Sounds

> Remove mouth sounds (clicks, pops, breathing) from audio using RNNoise, Hush, or Whisper-based detection.



## OpenAPI

````yaml POST /v1/enhancer/remove_mouth_sounds
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/remove_mouth_sounds:
    post:
      tags:
        - Audio Enhancer
      summary: Remove Mouth Sounds
      description: >-
        Remove mouth sounds (clicks, pops, breathing) from audio using RNNoise,
        Hush, or Whisper-based stutter detection.
      operationId: RemoveMouthSounds
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoveMouthSoundsRequest'
      responses:
        '200':
          description: Processed audio 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:
    RemoveMouthSoundsRequest:
      type: object
      description: The remove mouth sounds request payload.
      properties:
        url:
          type: string
          description: Audio URL (http/https).
          example: https://example.com/audio.mp3
        use_rnnoise:
          type: boolean
          description: Enable RNNoise broadband denoising.
          default: false
        rnnoise_strength:
          type: integer
          minimum: 0
          maximum: 100
          description: RNNoise strength (0–100).
          default: 80
        use_hush:
          type: boolean
          description: Enable Hush background voice suppression.
          default: false
        hush_atten_lim_db:
          type: number
          description: Hush attenuation limit in dB.
          default: 60
        use_whisper_stutter:
          type: boolean
          description: Also remove stuttering using Whisper.
          default: false
        whisper_model_size:
          type: string
          description: 'Whisper model size: `tiny`, `base`, `small`, or `medium`.'
          default: base
        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}`'

````