AsyncFlow API
  1. Voice Management
AsyncFlow API
  • Welcome to AsyncFlow API
  • Get Started
  • API Reference
    • API Status
      • API Status Check
    • Text-to-Speech
      • Text to Speech (WebSocket)
      • Text to Speech
      • Text to Speech with Word Timestamps
      • Text to Speech (Stream)
    • Voice Management
      • Clone Voice
        POST
      • List Voices
        POST
      • Get Voice
        GET
      • Update Voice
        PUT
      • Delete Voice
        DELETE
      • Get Voice Preview
        GET
  • Advanced Guides
    • Custom Pronunciations
      • Embedding Custom Phonemes in Async TTS API
      • Pronouncing digits oneโ€‘byโ€‘one
  • Integrations
    • Integrate with Twilio
    • Pipecat Integration
  1. Voice Management

Clone Voice

POST
https://api.async.ai/voices/clone
Clone your voice from 5 second of audio clip
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.async.ai/voices/clone' \
--header 'x-api-key: <api-key>' \
--header 'version: v1' \
--form 'audio=@"cmMtdXBsb2FkLTE3NDQxMTUwOTk4MzQtMg==/example.wav"' \
--form 'name=""' \
--form 'description=""' \
--form 'language=""' \
--form 'accent=""' \
--form 'gender=""' \
--form 'style=""' \
--form 'enhance=""' \
--form 'transcript=""'
Response Response Example
200 - Example 1
{
    "id": "9h5835677245-85b3-85b3-c527-9h5835677245",
    "name": "Voice 1",
    "description": "My First AsyncFlow Voice",
    "language": "en"
}

Request

Header Params

Body Params multipart/form-data

Responses

๐ŸŸข200Success
application/json
Body

๐ŸŸ 429RATE_LIMIT_EXCEEDED
๐ŸŸ 401INVALID_API_KEY
๐ŸŸ 404VERSION_NOT_FOUND
๐ŸŸ 400INVALID_LANGUAGE
๐ŸŸ 400FORMAT_NOT_RECOGNIZED
๐Ÿ”ด500Server Error
๐ŸŸ 429VOICE_CLONE_LIMIT_EXCEEDED
๐ŸŸ 400SHORT_SPEECH_DURATION
๐ŸŸ 400BAD_SPEECH_QUALITY
๐ŸŸ 413FILE_TOO_LARGE
Modified atย 2025-08-11 13:39:51
Previous
Text to Speech (Stream)
Next
List Voices
Built with