AutoContent API
  • Getting started
  • 🔮API Docs
    • 🪄Create Content
    • ♻️Modify Podcast
    • 🪄Create Podcast with custom voices
    • 🪄Create Podcast with a custom script
    • 📽️Create Short
    • 🗣️Clone Voice
    • 🧑‍🤝‍🧑Get Voices
    • 📃Get Transcript
    • 🧑‍🤝‍🧑Separate Speakers Voices
    • ⚙️Get Status
    • 📖List content
    • ⚡Webhook
    • 📈Usage
    • Error codes
  • 🪙Credits
  • 📖Code Samples
    • NodeJS
    • Python
    • C#
    • PHP
  • 🌎Languages
  • 🗣️Voices
  • ❓FAQ
  • 🔌Open API
  • ⚒️Test it
  • 💳Billing
  • Support
Powered by GitBook
On this page
  • POST
  • Response
  1. API Docs

Clone Voice

Creates a clone of the provided voice to be used on a podcast

POST

https://api.autocontentapi.com/content/CloneVoice

{
  "audioUrl": "string",
  "name": "string",
}

Field
Possible Values

audioUrl

Link to an .mp3 file with a clean recording of the voice that you want to clone. For great results it should be at least 30 seconds long. Longer durations produce better voice quality. Required.

name

Name for the voice. Required.

Sample request

curl -X 'POST'
  'https://api.autocontentapi.com/Content/CloneVoice'
  -H 'accept: text/plain'
  -H 'Authorization: Bearer YOUR_TOKEN_HERE'
  -H 'Content-Type: application/json'
  -d '{
  "audioUrl": "https://LinkToYourRecording.mp3",
  "name": "Miguel"
}'

Response

{
    "request_id": "string",
    "error_message": "string"
}
Field
Possible Values

request_id

resource.type

Error message when the request is not successful.

PreviousCreate ShortNextGet Voices

Last updated 3 months ago

Id of the request. If you get this, the voice has been created.

🔮
🗣️
You can call the Get Voices request to see its ID.