cURL
Python
JavaScript
PHP
Go
Java
curl --request POST \
--url https://waves-api.smallest.ai/api/v1/lightning-large/add_voice \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"displayName": "<string>"
}'
{
"message" : "<string>" ,
"data" : {
"voiceId" : "<string>" ,
"model" : "<string>" ,
"status" : "<string>"
}
}
Note: The Mintlify web UI currently does not correctly upload files in the API request. Below, we have provided code examples in Python and curl to help you test the API.
Sample cURL Example
Sample Code Example
Here is a Python example using the requests
library:
import requests
url = "https://waves-api.smallest.ai/api/v1/lightning-large/add_voice"
payload = { 'displayName' : 'my voice' }
files= [
( 'file' , ( 'my_voice.wav' , open ( 'my_voice.wav' , 'rb' ) , 'audio/wav' ) )
]
headers = {
'Authorization' : 'Bearer YOUR_API_KEY'
}
response = requests. request( "POST" , url, headers= headers, data= payload, files= files)
print ( response. text)
Replace YOUR_API_KEY
with your actual API key and example.wav
with the path to your audio file.
JWT token for authentication
Display name for the voice clone.
Audio file to create voice clone from.
Voice clone created successfully
Message if the voice clone was created successfully.
Model used to generate the voice.
Status of the voice creation.