> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rime.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Voice Details

> Voice metadata endpoint: list every Rime voice with demographic and model details.

## View In Browser

[https://users.rime.ai/data/voices/voice\_details.json](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](/docs/voices) and the [Explanation of Fields section](#explanation-of-fields) for more information.

## Example structure

```json theme={null}
[
    {
        "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
