Skip to main content
POST
/
api
/
v1
/
voice
/
custom_voice
Create Custom Voice
curl --request POST \
  --url 'https://api.example.com/api/v1/voice/custom_voice?api_key=' \
  --header 'Content-Type: multipart/form-data' \
  --form custom_voice_file='@example-file'
{
  "message": "Data created successfully",
  "meta": {},
  "data": {
    "name": "<string>",
    "description": "<string>"
  }
}

Authorizations

api_key
string
query
required

Your API key for authentication. You can generate it from the Settings page. Format: starts with in-.

Query Parameters

name
string | null
description
string | null

Body

multipart/form-data
custom_voice_file
file
required

Response

Successful Response

message
string | null
default:Data created successfully
meta
Meta · object
data
IUserCustomVoiceCreate · object