Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
multipart/form-data
Response
Successfully created voice clone
curl --request POST \
--url https://api.anam.ai/v1/voices \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'name=<string>' \
--form 'description=<string>' \
--form language=en \
--form enhance=true \
--form audioFile=@example-fileCreate a new voice by cloning from an audio file
curl --request POST \
--url https://api.anam.ai/v1/voices \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'name=<string>' \
--form 'description=<string>' \
--form language=en \
--form enhance=true \
--form audioFile=@example-fileBearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successfully created voice clone
Was this page helpful?