Skip to main content

AudioSpliter Docs

Audio splitting as a service

{ }

Easy Integration

Simple REST API with clear endpoints. Send a URL, get split segments back. Works with any language or platform.

>>>

Async Processing

Submit jobs and get results when ready. No timeouts, no waiting. Process files up to 2 GB without blocking your app.

<->

Webhooks

Get notified instantly when jobs complete. No polling needed. Secure HMAC-SHA256 signed payloads you can trust.

Split audio in one API call

Submit a URL, choose your split mode, and get download links for each segment.

Create a split job
curl -X POST https://api.audiospliter.com/api/v1/splits \
-H "X-API-Key: as_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"sourceUrl": "https://example.com/audio.mp3",
"splitMode": "duration",
"segmentDuration": 600,
"outputFormat": "mp3"
}'