Convert base64 audio to URL
curl --request POST \
--url https://modelslab.com/api/v6/voice/base64_to_url \
--header 'Content-Type: application/json' \
--data '
{
"key": "<string>",
"init_audio": "<string>"
}
'{
"id": 123,
"output": [
"<string>"
]
}Speech & Audio API
Base64 to URL
The Base64 to URL endpoint allows you to upload audio in base64 format and retrieve it as a URL.
POST
/
voice
/
base64_to_url
Convert base64 audio to URL
curl --request POST \
--url https://modelslab.com/api/v6/voice/base64_to_url \
--header 'Content-Type: application/json' \
--data '
{
"key": "<string>",
"init_audio": "<string>"
}
'{
"id": 123,
"output": [
"<string>"
]
}Documentation Index
Fetch the complete documentation index at: https://docs.modelslab.com/llms.txt
Use this file to discover all available pages before exploring further.
Request
Make aPOST request to below endpoint and pass the required parameters as a request body.
curl
--request POST 'https://modelslab.com/api/v6/voice/base64_to_url' \
Body
json
{
"key":"your_api_key",
"init_audio":"data:audio/wav;base64,<base64>"
}
Body
application/json
Was this page helpful?
⌘I

