> ## 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 All Voices

> List every Rime voice, keyed by modelId and language.

## View In Browser

[https://users.rime.ai/data/voices/all-v2.json](https://users.rime.ai/data/voices/all-v2.json)

## Example structure

```json theme={null}
{
  "coda": {
    "eng": [
      "astra",
      "albion",
      // ...and more...
    ],
    "spa": [
      "aurelio",
      "celestino",
      // ...and more...
    ]
  },
  "mistv3": {
    "eng": [
      "alexis",
      "astra",
      // ...and more...
    ],
    "spa": [
      "diego",
      "isa",
      // ...and more...
    ]
  },
  "arcana": {
    "eng": [
      "luna",
      "celeste",
      // ...and more...
    ],
    "jpn": [
      "raiden",
      "yukiko",
      // ...and more...
    ]
  }
}
```

## Explanation

The response object is keyed by the applicable `modelId`. This is the same `modelId` used as an argument to our [TTS APIs](https://rimelabs.mintlify.app/api-reference/endpoint/streaming-pcm).

It is then further keyed by an ISO 639-2 language code.
