Mureka API v1 TTS/speech generation endpoints added:
- POST speech - generate speech from text with voice cloning and multi-speaker conversations
- GET speech - retrieve generated speech recordings
- DELETE speech - delete speech recordings
- GET speech/voices - list available voices including cloned ones
- POST speech/voice - clone voice from MP3 audio samples
- DELETE speech/voice - delete cloned voices
Example POST speech
-
Cloned voice - Scarlet (
"voice_id": 12345
) -
Cloned voice - Morgan (
"voice_id": 67890
)
curl --location 'https://api.useapi.net/v1/mureka/speech/' \
--header 'Authorization: Bearer user:12345-…' \
--form 'conversation="[
{
\"voice_id\": 12345,
\"text\": \"Scarlett, I have a query of a cosmological nature. If the universe is constantly expanding, does that mean this jar of pickles is, on a molecular level, getting infinitesimally farther away from the olives?\"
},
{
\"voice_id\": 67890,
\"text\": \"It means you'\''ve been standing in front of the open fridge for five minutes. Are you making a sandwich or narrating the secret life of condiments?\"
},
{
\"voice_id\": 12345,
\"text\": \"A sandwich is not merely a construct of bread and fillings. It is a journey. A story of disparate elements... the humble turkey, the audacious mustard... all coming together to create a fleeting moment of culinary harmony. This pickle is the story'\''s climax.\"
},
{
\"voice_id\": 67890,
\"text\": \"The only climax happening here is my electricity bill. Grab the jar and close the door before you cause a temporal rift in the dairy aisle.\"
}
]"'
Result