List voices across all providers (unified)
curl --request GET \
--url https://eu-gcp-api.vg-stuff.com/v3/voices \
--header 'Authorization: Bearer <token>'import requests
url = "https://eu-gcp-api.vg-stuff.com/v3/voices"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu-gcp-api.vg-stuff.com/v3/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://eu-gcp-api.vg-stuff.com/v3/voices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://eu-gcp-api.vg-stuff.com/v3/voices"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://eu-gcp-api.vg-stuff.com/v3/voices")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://eu-gcp-api.vg-stuff.com/v3/voices")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"total": 123,
"limit": 123,
"offset": 123,
"providersQueried": [
"<string>"
],
"providersFailed": [
{
"provider": "<string>",
"error": "<string>"
}
],
"voices": [
{
"voiceId": "<string>",
"name": "<string>",
"provider": "<string>",
"previewUrl": "<string>",
"filters": {
"accent": "<string>",
"gender": "<string>",
"useCase": "<string>",
"language": "<string>"
}
}
]
}{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}Voices
List voices (unified)
Search and list voices across one or more TTS providers in a single normalized shape. Filter by language, gender, accent and providers[].
GET
/
voices
List voices across all providers (unified)
curl --request GET \
--url https://eu-gcp-api.vg-stuff.com/v3/voices \
--header 'Authorization: Bearer <token>'import requests
url = "https://eu-gcp-api.vg-stuff.com/v3/voices"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu-gcp-api.vg-stuff.com/v3/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://eu-gcp-api.vg-stuff.com/v3/voices",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://eu-gcp-api.vg-stuff.com/v3/voices"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://eu-gcp-api.vg-stuff.com/v3/voices")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://eu-gcp-api.vg-stuff.com/v3/voices")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"total": 123,
"limit": 123,
"offset": 123,
"providersQueried": [
"<string>"
],
"providersFailed": [
{
"provider": "<string>",
"error": "<string>"
}
],
"voices": [
{
"voiceId": "<string>",
"name": "<string>",
"provider": "<string>",
"previewUrl": "<string>",
"filters": {
"accent": "<string>",
"gender": "<string>",
"useCase": "<string>",
"language": "<string>"
}
}
]
}{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}The unified endpoint is the easiest way to find a voice. It fans out to every requested provider in parallel, normalizes the result, then applies your filters.
Examples
Only English female voices across all providers
curl "https://eu-gcp-api.vg-stuff.com/v3/voices?language=en&gender=female&limit=50" \
-H "Authorization: Bearer YOUR_API_KEY"
German voices from ElevenLabs and Cartesia only
curl "https://eu-gcp-api.vg-stuff.com/v3/voices?providers=elevenlabs,cartesia&language=de" \
-H "Authorization: Bearer YOUR_API_KEY"
Australian-accent voices
curl "https://eu-gcp-api.vg-stuff.com/v3/voices?accent=australian&limit=20" \
-H "Authorization: Bearer YOUR_API_KEY"
How filters work
language— accepts ISO short codes (en), BCP-47 (en-US) or English names (English). Matches are inclusive: filterenreturnsen,en-US,en-GB,English, etc.gender—male/female/neutral. Also acceptsmasculine,feminine,m,f(case-insensitive).accent— substring match (case-insensitive).americanmatchesAmerican,North American, etc.providers— comma-separated list (?providers=elevenlabs,cartesia). When omitted, every supported provider is queried in parallel.
Response
The response always contains:voices[]— the paginated, filtered list (each entry hasvoiceId,name,provider,previewUrl,filters)total— total matches before paginationprovidersQueried— providers that were actually queriedprovidersFailed— providers that errored (e.g. missing workspace API key) along with the error message — the request still succeeds
Each voice has a ready-to-play
previewUrl MP3. Drop it straight into an <audio> element.This endpoint is read-only and does not consume credits.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Required range:
1 <= x <= 500Required range:
x >= 0