Python · JS · RESTaudio + video in/outEU-hosted · GDPR

Remove breaths from audio & video. With one API call.

AI breath removal for podcasts, voiceovers, audiobooks, and video — at scale. Pick full, legacy, or natural mode, or mute breaths to keep the original timing. Python & JS SDKs, REST, and webhooks. EU-hosted.

Veed
bHuman
Altered
Thames College
Teleprompter
Natural Reader
Veed
bHuman
Altered
Thames College
Teleprompter
Natural Reader

live demo · one take, one flag

Hear the difference.

breath="legacy"soon

Untouched — breaths fully audible.

0:00 / 0:00tap a mark to hear a breath

> client.process(url)

One raw recording, processed with each flag. Switch mid-playback — the position is kept.

input.config.breath

Cut it. Mute it. Or let it breathe.

Three removal modes and a mute switch, set per request. Watch what each one does to the same clip.

muted=TrueSilence breaths instead of cutting them — the file keeps its exact original timing.
episode.mp34:32 4:18
cutcutcut
0:002:16out 4:18
speechbreath// 3 breaths — 3 cut
process.py
from cleanvoice import Cleanvoice client = Cleanvoice.from_env() result = client.process(    "https://example.com/episode.mp3",    breath=True,) print("Cleaned audio:", result.audio.url)

Read the spec sheet.

Everything you usually scroll the docs for, before deciding if an API is worth a key.

api datasheet · v2
Endpoint
POST api.cleanvoice.ai/v2/editsPoll GET /v2/edits/{id} or get a webhook when the file is done.
Auth
X-API-Key headerCreate keys at app.cleanvoice.ai — no OAuth dance.
Breath control
breath: true | "legacy" | "natural"Add muted: true to silence breaths instead of cutting them.
Input formats
Audio & videoWAV, MP3, FLAC, M4A, AAC, OGG — plus MP4, MOV, and WebM video.
Processing speed
~30 s per 2–3 min clipA one-hour episode typically finishes in 5–10 minutes.
SDKs & integrations
Python · JavaScript · RESTPlus Make and n8n for no-code pipelines. Hosted in the EU (GDPR).

How it works

01

Get your API key

Create an account for free. Copy your API key from the Developers dashboard.

02

Install the SDK

Use the official Python or JavaScript SDK. Or you can call the REST API directly.

03

Upload your file

Use a local file or the URL of audio/video that you want to edit.

04

Auto-Poll or Webhook

Jobs run async. SDK handles polling automatically. Or use our webhook to upload the result to your s3 storage.

docs.cleanvoice.ai
import { Cleanvoice } from '@cleanvoice/cleanvoice-sdk';const client = new Cleanvoice({ apiKey: process.env.CLEANVOICE_API_KEY });// Remove fillers, dead air, mouth sounds + denoise and normalize.const result = await client.process('https://example.com/episode.mp3', {  fillers: true,  long_silences: true,  mouth_sounds: true,  remove_noise: true,  normalize: true,});console.log('Cleaned audio:', result.audio.url);await result.audio.download('cleaned.mp3');

Why developers trust us

All your data in your control. Each file processed securely.

REGION EU-CENTRAL

EU-Hosted

Servers and GPU located in the EU

ISO 27001GDPRAUDITED · ON-PREMISE ON REQUEST

ISO 27001 & GDPR Compliant

DPA, SLA and on request even on premise deployment

YOUR FILESMODEL TRAININGTRAINED ON OUR OWN STUDIO DATA

No Training on Your Data.

We record our own dataset in professional studios.

Simple, transparent pricing

Pay as you go or subscribe. One rate across every capability. Full pricing →

Pay as You Go

  • 5 hours

    $2.20/h

    $11 total

  • 10 hours

    $2.00/h

    $20 total

  • 30 hours

    $1.50/h

    $45 total

  • 200 hours

    $1.00/h

    $200 total

Credits valid for 2 years.

Subscription

  • 10 hours / mo

    $1.10/h

    $11/mo

  • 30 hours / mo

    $1.00/h

    $30/mo

  • 100 hours / mo

    $0.90/h

    $90/mo

  • 200 hours / mo

    $0.88/h

    $175/mo

Unused hours roll over up to 3× your plan.

200+ hours

Custom

From$0.20/ hour

Tailored feature mix and volume pricing for production workloads.

  • Custom API endpoints
  • Priority support
  • Custom billing
Book a call

Uploads are rounded up to the nearest minute.

Free credits for baby startups

Working on audio projects for early-stage startup? With a tight budget?

200 hours

Free API credits

Includes all features to edit, enhance, and transcribe.

Write Us and Apply

Write your startup name, what you’re building, and how you’d use Cleanvoice. We will reply within 2 business days.

Frequently asked Questions.

Still have a question?

Send it over and a real person will answer.

support@cleanvoice.ai
Ask Now

breath: true is full removal — the best default, built for general and challenging recordings. "legacy" is conservative removal that plays it safe on already-clean studio takes. "natural" lightens breaths instead of deleting every one, so the speech keeps its human rhythm. You can switch modes per request, so different shows or clients can get different treatments from the same pipeline.