API Playground

Configure an edit request, inspect the generated code, and run it against the Cleanvoice API.

API connection

No API key connected

Required to run requests

Features
Choose what Cleanvoice should edit, enhance, or export.
Requests
Review the generated init and progress requests.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# pip install cleanvoice-sdk
from cleanvoice import Cleanvoice

cv = Cleanvoice({'api_key': 'YOUR_CLEANVOICE_API_KEY'})

# process() handles uploading, processing, and polling automatically
result = cv.process(
    'https://cdn.cleanvoice.ai/assets/sample.mp3',
    {'normalize': True}
)

# Or process a local file:
# result = cv.process('/path/to/episode.mp3', {'normalize': True})

print(f'Cleaned audio: {result.audio.url}')
result.audio.download('cleaned.mp3')
Preview
Listen to output and inspect the response after a run.
Select audio above and run the requests
to see the result here...