Create a new voice
curl --request POST \
--url https://api.callers.ai/voices \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"voiceId": "<string>",
"isMultilingual": false,
"supportedLocales": [],
"settings": {},
"subAccounts": false
}
'import requests
url = "https://api.callers.ai/voices"
payload = {
"name": "<string>",
"voiceId": "<string>",
"isMultilingual": False,
"supportedLocales": [],
"settings": {},
"subAccounts": False
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
voiceId: '<string>',
isMultilingual: false,
supportedLocales: [],
settings: {},
subAccounts: false
})
};
fetch('https://api.callers.ai/voices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.callers.ai/voices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'voiceId' => '<string>',
'isMultilingual' => false,
'supportedLocales' => [
],
'settings' => [
],
'subAccounts' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.callers.ai/voices"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"voiceId\": \"<string>\",\n \"isMultilingual\": false,\n \"supportedLocales\": [],\n \"settings\": {},\n \"subAccounts\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.callers.ai/voices")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"voiceId\": \"<string>\",\n \"isMultilingual\": false,\n \"supportedLocales\": [],\n \"settings\": {},\n \"subAccounts\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.callers.ai/voices")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"voiceId\": \"<string>\",\n \"isMultilingual\": false,\n \"supportedLocales\": [],\n \"settings\": {},\n \"subAccounts\": false\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"voiceId": "<string>",
"name": "<string>",
"isMultilingual": true,
"supportedLocales": [
"<string>"
],
"ttsClient": "<string>",
"gender": "MALE",
"organizationId": "<string>",
"settings": {
"stability": 0.8,
"style": 0.3
}
}
]{
"status": "error",
"message": "<string>",
"data": [
{}
]
}{
"status": "error",
"message": "<string>"
}{
"status": "error",
"message": "<string>"
}Voices
Create a new voice
POST
/
voices
Create a new voice
curl --request POST \
--url https://api.callers.ai/voices \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"voiceId": "<string>",
"isMultilingual": false,
"supportedLocales": [],
"settings": {},
"subAccounts": false
}
'import requests
url = "https://api.callers.ai/voices"
payload = {
"name": "<string>",
"voiceId": "<string>",
"isMultilingual": False,
"supportedLocales": [],
"settings": {},
"subAccounts": False
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
voiceId: '<string>',
isMultilingual: false,
supportedLocales: [],
settings: {},
subAccounts: false
})
};
fetch('https://api.callers.ai/voices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.callers.ai/voices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'voiceId' => '<string>',
'isMultilingual' => false,
'supportedLocales' => [
],
'settings' => [
],
'subAccounts' => false
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.callers.ai/voices"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"voiceId\": \"<string>\",\n \"isMultilingual\": false,\n \"supportedLocales\": [],\n \"settings\": {},\n \"subAccounts\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.callers.ai/voices")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"voiceId\": \"<string>\",\n \"isMultilingual\": false,\n \"supportedLocales\": [],\n \"settings\": {},\n \"subAccounts\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.callers.ai/voices")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"voiceId\": \"<string>\",\n \"isMultilingual\": false,\n \"supportedLocales\": [],\n \"settings\": {},\n \"subAccounts\": false\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"voiceId": "<string>",
"name": "<string>",
"isMultilingual": true,
"supportedLocales": [
"<string>"
],
"ttsClient": "<string>",
"gender": "MALE",
"organizationId": "<string>",
"settings": {
"stability": 0.8,
"style": 0.3
}
}
]{
"status": "error",
"message": "<string>",
"data": [
{}
]
}{
"status": "error",
"message": "<string>"
}{
"status": "error",
"message": "<string>"
}Authorizations
Headers
Optional sub organization ID. Must belong to your main organization API key.
Body
application/json
Payload for creating a new voice
Minimum string length:
5Minimum string length:
5Available options:
ELEVENLABS, CARTESIA, GOOGLE_CLOUD Available options:
MALE, FEMALE Available options:
en-US, en-GB, en-AU, en-CA, en-IE, en-IN, en-NZ, en-ZA, en-SG, es-ES, es-MX, es-AR, es-CL, es-PE, fr-FR, pt-BR, pt-PT, zh-CN, cmn-EN, nl-NL, fi-FI, de-DE, de-AT, de-CH, de-LU, de-LI, gsw-CH, gsw-LI, el-GR, hi-IN, en-TA, id-ID, it-IT, ja-JP, ko-KR, ms-MY, en-MS, ro-RO, ru-RU, uk-UA, ka-GE, bg-BG, cs-CZ, da-DK, pl-PL, sk-SK, sv-SE, tr-TR, ar-SA, ary-MA, arz-EG, apc-LB, apc-SY, apc-PS, apc-JO, acm-IQ, ar-AE, afb-AE, afb-BH, afb-KW, afb-QA, afb-OM, hr-HR, hr-BA, he-IL, ur-PK, hu-HU, fil-PH, th-TH, vi-VN Show child attributes
Show child attributes
Response
Array of newly created Voice objects
The ID of the voice
The provider-specific voice ID
The name of the voice
Indicates if the voice supports multiple languages
Array of supported locale strings
Identifier for the TTS (text-to-speech) client
The gender of the voice
Available options:
MALE, FEMALE The organization ID that owns this voice
Additional settings stored in JSON format
Example:
{ "stability": 0.8, "style": 0.3 }