Make.com Integration
Connect AudioSpliter to Make.com (formerly Integromat) for visual workflow automation.
Setup
- Log in to make.com
- Create a new scenario
- Add the HTTP module or search for AudioSpliter in the app directory
- Configure with your API key
Using the HTTP Module
If a native AudioSpliter module is not yet available, use the HTTP module:
Create a Split Job
- Add an HTTP > Make a request module
- Configure:
- URL:
https://api.audiospliter.com/api/v1/splits - Method: POST
- Headers:
X-API-Key: your API keyContent-Type:application/json
- Body type: Raw
- Content type: JSON
- Body:
{
"sourceUrl": "{{url}}",
"splitMode": "duration",
"segmentDuration": 600,
"outputFormat": "mp3"
} - URL:
Check Job Status
- Add another HTTP > Make a request module
- Configure:
- URL:
https://api.audiospliter.com/api/v1/splits/{{jobId}} - Method: GET
- Headers:
X-API-Key: your API key
- URL:
Webhook Trigger
To receive job completion events:
- Add a Webhooks > Custom webhook module as the trigger
- Copy the webhook URL
- Include this URL as
webhookUrlwhen creating split jobs - Make.com receives the payload when jobs complete
Example Scenarios
Audio Processing Pipeline
- Google Drive -- Watch for new files
- HTTP -- Create AudioSpliter split job with the file URL
- Webhooks -- Wait for completion callback (separate scenario)
- Iterator -- Loop through segments
- HTTP -- Download each segment
- Google Drive -- Upload to output folder
Notification Flow
- Webhooks -- Receive AudioSpliter completion webhook
- Router -- Branch on event type
job.completed-> Email -- Send download linksjob.failed-> Slack -- Alert team
Tips
- Use Make.com's sleep module between creating a job and checking status
- The iterator module works well for processing multiple segments
- Set up error handlers for failed HTTP requests