Workflow Integrations
Connect Cleanvoice to Make.com, n8n, Zapier, and other automation platforms.
You can integrate Cleanvoice into no-code automation workflows without writing any code. Pick your platform:
Make.com
Visual drag-and-drop automation. Great for connecting Google Drive, Dropbox, and hundreds of other apps.
n8n
Self-hostable workflow automation. Free and open source, with a ready-made Cleanvoice template.
Zapier
Use Zapier's Webhooks by Zapier action to POST to the Cleanvoice API:
- Create a new Zap with your trigger (e.g. new Dropbox file)
- Add a Webhooks by Zapier → POST action
- URL:
https://api.cleanvoice.ai/v2/edits - Headers:
X-API-Key: your_api_key - Data:
{
"input": {
"files": ["YOUR_AUDIO_URL"],
"config": { "fillers": { "enabled": true } }
}
}Zapier's free plan has limited support for polling loops. For workflows that need to wait for Cleanvoice to finish processing, Make.com or n8n work better.
Using public URLs
For all workflow integrations, the simplest approach is to use a public audio URL rather than uploading files through the API. Most cloud storage services can generate shareable links you can pass directly to Cleanvoice.
- Dropbox — Share → Copy link → change
?dl=0to?dl=1 - Google Drive — Share (anyone with link) →
https://drive.google.com/uc?export=download&id=FILE_ID - S3 —
aws s3 presign s3://bucket/file.mp3 --expires-in 3600