List voices
curl --request GET \
--url https://api.zeptar.com/v1/voicesimport requests
url = "https://api.zeptar.com/v1/voices"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.zeptar.com/v1/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.zeptar.com/v1/voices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.zeptar.com/v1/voices"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.zeptar.com/v1/voices")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zeptar.com/v1/voices")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"voices": [
{
"id": "cgSgspJ2msm6clMCkdW9",
"name": "Jessica",
"provider": "elevenlabs",
"model": "eleven_turbo_v2_5",
"description": "Playful, bright, warm.",
"gender": "female",
"accent": "American",
"age": "young",
"language": "en",
"category": "conversational",
"preview_url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/cgSgspJ2msm6clMCkdW9/56a97bf8-b69b-448f-846c-c3a11683d45a.mp3",
"avatar_url": "/agent-orb.webp"
}
],
"next_cursor": "MzA="
}Voices
List voices
GET
/
v1
/
voices
List voices
curl --request GET \
--url https://api.zeptar.com/v1/voicesimport requests
url = "https://api.zeptar.com/v1/voices"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.zeptar.com/v1/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.zeptar.com/v1/voices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.zeptar.com/v1/voices"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.zeptar.com/v1/voices")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zeptar.com/v1/voices")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"voices": [
{
"id": "cgSgspJ2msm6clMCkdW9",
"name": "Jessica",
"provider": "elevenlabs",
"model": "eleven_turbo_v2_5",
"description": "Playful, bright, warm.",
"gender": "female",
"accent": "American",
"age": "young",
"language": "en",
"category": "conversational",
"preview_url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/cgSgspJ2msm6clMCkdW9/56a97bf8-b69b-448f-846c-c3a11683d45a.mp3",
"avatar_url": "/agent-orb.webp"
}
],
"next_cursor": "MzA="
}Query Parameters
TTS provider to filter by (required).
Example:
"elevenlabs"
Full-text search against voice name and description (case-insensitive).
Example:
"warm"
Filter by language code, e.g. "en".
Example:
"en"
Filter by gender: "male", "female", or "neutral".
Example:
"female"
Filter by accent, e.g. "American", "British".
Example:
"American"
Filter by age: "young", "middle_aged", or "old".
Example:
"young"
Filter by category, e.g. "conversational", "narrative_story".
Example:
"conversational"
Base64-encoded pagination cursor returned by the previous page.
Example:
"MzA="
Number of voices per page. Default 30, max 100.
Required range:
1 <= x <= 100Example:
30