Skip to main content

Make.com Integration

Connect AudioSpliter to Make.com (formerly Integromat) for visual workflow automation.

Setup

  1. Log in to make.com
  2. Create a new scenario
  3. Add the HTTP module or search for AudioSpliter in the app directory
  4. 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

  1. Add an HTTP > Make a request module
  2. Configure:
    • URL: https://api.audiospliter.com/api/v1/splits
    • Method: POST
    • Headers:
      • X-API-Key: your API key
      • Content-Type: application/json
    • Body type: Raw
    • Content type: JSON
    • Body:
    {
    "sourceUrl": "{{url}}",
    "splitMode": "duration",
    "segmentDuration": 600,
    "outputFormat": "mp3"
    }

Check Job Status

  1. Add another HTTP > Make a request module
  2. Configure:
    • URL: https://api.audiospliter.com/api/v1/splits/{{jobId}}
    • Method: GET
    • Headers: X-API-Key: your API key

Webhook Trigger

To receive job completion events:

  1. Add a Webhooks > Custom webhook module as the trigger
  2. Copy the webhook URL
  3. Include this URL as webhookUrl when creating split jobs
  4. Make.com receives the payload when jobs complete

Example Scenarios

Audio Processing Pipeline

  1. Google Drive -- Watch for new files
  2. HTTP -- Create AudioSpliter split job with the file URL
  3. Webhooks -- Wait for completion callback (separate scenario)
  4. Iterator -- Loop through segments
  5. HTTP -- Download each segment
  6. Google Drive -- Upload to output folder

Notification Flow

  1. Webhooks -- Receive AudioSpliter completion webhook
  2. Router -- Branch on event type
    • job.completed -> Email -- Send download links
    • job.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