✨ NEW:SORA Watermark Remover - Remove watermarks from SORA generated videos. · Try it now
cURL
curl --request POST \ --url https://modelslab.com/api/v6/voice/base64_to_url \ --header 'Content-Type: application/json' \ --data ' { "key": "<string>", "init_audio": "<string>" } '
{ "status": "success", "id": 123, "output": [ "<string>" ] }
The Base64 to URL endpoint allows you to upload audio in base64 format and retrieve it as a URL.
POST
--request POST 'https://modelslab.com/api/v6/voice/base64_to_url' \
{ "key":"", "init_audio":"data:audio/wav;base64,<base64>", }
Your API Key used for request authorization
Base64 format audio file (MP3/WAV, 10-15 seconds for faster upload)
Base64 to URL response
Status of the conversion
success
error
Unique identifier for the conversion
Array of converted audio URLs
Was this page helpful?