Text-to-Speech
curl --request POST \
--url https://tts.freyavoice.ai/v1/audio/speech \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "tts-1",
"input": "Hello, testing Freya Voice API.",
"voice": "leyla"
}
'import requests
url = "https://tts.freyavoice.ai/v1/audio/speech"
payload = {
"model": "tts-1",
"input": "Hello, testing Freya Voice API.",
"voice": "leyla"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({model: 'tts-1', input: 'Hello, testing Freya Voice API.', voice: 'leyla'})
};
fetch('https://tts.freyavoice.ai/v1/audio/speech', 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://tts.freyavoice.ai/v1/audio/speech",
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([
'model' => 'tts-1',
'input' => 'Hello, testing Freya Voice API.',
'voice' => 'leyla'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://tts.freyavoice.ai/v1/audio/speech"
payload := strings.NewReader("{\n \"model\": \"tts-1\",\n \"input\": \"Hello, testing Freya Voice API.\",\n \"voice\": \"leyla\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://tts.freyavoice.ai/v1/audio/speech")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model\": \"tts-1\",\n \"input\": \"Hello, testing Freya Voice API.\",\n \"voice\": \"leyla\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://tts.freyavoice.ai/v1/audio/speech")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"model\": \"tts-1\",\n \"input\": \"Hello, testing Freya Voice API.\",\n \"voice\": \"leyla\"\n}"
response = http.request(request)
puts response.read_body"<string>"{
"error": "<string>"
}API Reference
Text-to-Speech
Converts text into natural-sounding speech using Freya’s TTS model. Returns a binary audio file. Supports the following emotion tags: [pause], [eee], [throat clearing], [mm-hmm], [laughter], [deep breath], [hmm], [cough], [breath]
POST
/
v1
/
audio
/
speech
Text-to-Speech
curl --request POST \
--url https://tts.freyavoice.ai/v1/audio/speech \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "tts-1",
"input": "Hello, testing Freya Voice API.",
"voice": "leyla"
}
'import requests
url = "https://tts.freyavoice.ai/v1/audio/speech"
payload = {
"model": "tts-1",
"input": "Hello, testing Freya Voice API.",
"voice": "leyla"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({model: 'tts-1', input: 'Hello, testing Freya Voice API.', voice: 'leyla'})
};
fetch('https://tts.freyavoice.ai/v1/audio/speech', 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://tts.freyavoice.ai/v1/audio/speech",
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([
'model' => 'tts-1',
'input' => 'Hello, testing Freya Voice API.',
'voice' => 'leyla'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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://tts.freyavoice.ai/v1/audio/speech"
payload := strings.NewReader("{\n \"model\": \"tts-1\",\n \"input\": \"Hello, testing Freya Voice API.\",\n \"voice\": \"leyla\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://tts.freyavoice.ai/v1/audio/speech")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model\": \"tts-1\",\n \"input\": \"Hello, testing Freya Voice API.\",\n \"voice\": \"leyla\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://tts.freyavoice.ai/v1/audio/speech")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"model\": \"tts-1\",\n \"input\": \"Hello, testing Freya Voice API.\",\n \"voice\": \"leyla\"\n}"
response = http.request(request)
puts response.read_body"<string>"{
"error": "<string>"
}Authorizations
Bearer token issued by your workspace.
Body
application/json
The text to synthesize audio for.
The voice ID to use.
Available options:
leyla, zeynep, alev, ali, alper, mustafa Response format for the API request.
Available options:
mp3, opus, aac, flac, wav, pcm Quality preset. tts-1 is faster; tts-1-hd is higher quality.
Available options:
tts-1, tts-1-hd Response
Audio file generated successfully.
Binary WAV audio data.