Docs
audio
Split Audio

Split audio

The split audio API provides a simple yet powerful interface for audio splitting.

Endpoint

POST /audio/v1/split-audio

Body

Form Data

  • audio (file, required): The audio file that we want to split it.

Example

Request

POST /audio/v1/split-audio
x-access-key: YOUR_ACCESS_KEY
##Form Data
{
    "audio": "<Input file>",
}

Response

Success
HTTP/1.1 200 OK
Content-Type: application/json
 
{
    "success": true,
    "data": [url , url],
    "message": "<process success message>"
 
     }
Error
HTTP/1.1 400 Bad Request
Content-Type: application/json
{
    "success": false,
    "message": "<An error message containg the details>"
}