v47

latestOpenAPI 3.0.2raw.githubusercontent.com2026-08-01360485.4 KB
Audio Projects

AI Voice Cloner

Clone a voice from an audio sample and generate speech.

  • Each character costs 0.05 credits.
  • The cost is rounded up to the nearest whole number
post/v1/ai-voice-cloner

Request body

namestring

Give your audio a custom name for easy identification.

Example request

{
  "name": "My Voice Cloner audio",
  "assets": {
    "audio_file_path": "api-assets/id/1234.mp3"
  },
  "style": {
    "prompt": "Hello, this is my cloned voice."
  }
}

Response

Success

idstring required

Unique ID of the audio. Use it with the Get audio Project API to fetch status and downloads.

credits_chargedinteger required

The amount of credits deducted from your account to generate the audio. We charge credits right when the request is made.

If an error occurred while generating the audio, credits will be refunded and this field will be updated to include the refund.

Example response

{
  "id": "cuid-example",
  "credits_charged": 1
}