Upload File
curl --request POST \
--url https://api.minimax.io/v1/files/upload \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form purpose=voice_clone \
--form file='@example-file'{
"file": {
"file_id": 123456789012345680,
"bytes": 5896337,
"created_at": 1700469398,
"filename": "audio_sample.mp3",
"purpose": "voice_clone"
},
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}Voice Cloning
Upload Audio for Voice Cloning
Use this API to upload audio files for voice cloning.
POST
/
v1
/
files
/
upload
Upload File
curl --request POST \
--url https://api.minimax.io/v1/files/upload \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form purpose=voice_clone \
--form file='@example-file'{
"file": {
"file_id": 123456789012345680,
"bytes": 5896337,
"created_at": 1700469398,
"filename": "audio_sample.mp3",
"purpose": "voice_clone"
},
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}Authorizations
HTTP: Bearer Auth
- Security Scheme Type: http
- HTTP Authorization Scheme:
Bearer API_key, can be found in Account Management>API Keys.
Headers
Indicates the request is a multipart file upload.
Available options:
multipart/form-data Body
multipart/form-data
The purpose of the file. Supported values and formats:
- voice_clone: For fast voice cloning of the original audio file.
Supported formats:
mp3,m4a,wav
Available options:
voice_clone Example:
"voice_clone"
The file to upload. Provide the path to the audio file.
Requirements for uploaded files:
- Formats: mp3, m4a, wav
- Duration: Minimum 10 seconds, maximum 5 minutes
- Size: Must not exceed 20 MB
⌘I