Skip to main content
List Voice Details
curl --request GET \
  --url https://users.rime.ai/data/voices/voice_details.json
import requests

url = "https://users.rime.ai/data/voices/voice_details.json"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://users.rime.ai/data/voices/voice_details.json', 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://users.rime.ai/data/voices/voice_details.json",
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://users.rime.ai/data/voices/voice_details.json"

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://users.rime.ai/data/voices/voice_details.json")
.asString();
require 'uri'
require 'net/http'

url = URI("https://users.rime.ai/data/voices/voice_details.json")

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
This is a public endpoint — no Authorization header or API key is required.

View In Browser

https://users.rime.ai/data/voices/voice_details.json

Description

These details are based on subjective assessment and are meant to serve as a general guide. They describe the demographics of the voices and don’t represent API parameters. Please see Finding a Voice and the Explanation of Fields section for more information.

Example structure

[
    {
        "speaker": "astra",
        "gender": "Female",
        "age": "Young Adult",
        "country": "US",
        "dialect": "American",
        "demographic": "White",
        "genre": [
            "Any"
        ],
        "modelId": "coda",
        "language": "English",
        "lang": "eng",
        "flagship": true
    },
    {
        "speaker": "luna",
        "gender": "Female",
        "age": "Young Adult",
        "country": "US",
        "dialect": "American",
        "demographic": "White",
        "genre": [
            "Any"
        ],
        "modelId": "arcana",
        "language": "English",
        "lang": "eng",
        "flagship": true
    },
    {
        "speaker": "cove",
        "gender": "Male",
        "age": "Middle",
        "country": "US",
        "dialect": "Generic",
        "demographic": "General American",
        "genre": [
            "Conversational"
        ],
        "modelId": "mistv3",
        "language": "English",
        "lang": "eng"
    },
    // and more...
]

Explanation of fields

The response object is an array of objects, each representing a voice. Each object contains the following fields:
  • speaker: Represents the name of the voice.
  • gender: Indicates the gender of the voice.
  • age: Describes the age group of the voice.
  • country: The country that the voice is associated with, typically representing the accent or regional dialect.
  • dialect: More specific than country, this field can indicate a particular area within a country.
  • demographic: Describes the demographic group the voice represents.
  • genre: An array of genres that the voice is suitable for, such as ‘Conversational’.
  • language: The spoken language that the model is usable for.
  • lang: This is the value you pass to specify the language the selected speaker should speak
  • modelId: The model id that the speaker is available under