Skip to main content
GET
/
downloadable_libraries
Downloadable Libraries
curl --request GET \
  --url https://api.example.com/downloadable_libraries
[
  {
    "name": "<string>",
    "uuid": "<string>",
    "version": "<string>",
    "download_url": "<string>",
    "bytes": 123,
    "speakers": [
      {
        "speaker": {
          "name": "<string>",
          "speaker_uuid": "<string>",
          "styles": [
            {
              "name": "<string>",
              "id": 123,
              "type": "talk"
            }
          ],
          "version": "<string>",
          "supported_features": {
            "permitted_synthesis_morphing": "ALL"
          }
        },
        "speaker_info": {
          "policy": "<string>",
          "portrait": "<string>",
          "style_infos": [
            {
              "id": 123,
              "icon": "<string>",
              "voice_samples": [
                "<string>"
              ],
              "portrait": "<string>"
            }
          ]
        }
      }
    ]
  }
]

Response

200 - application/json

List of downloadable voice library information

name
string
required

Name of the voice library

uuid
string
required

UUID of the voice library

version
string
required

Version of the voice library

download_url
string
required

Download URL of the voice library

bytes
integer
required

Size of the voice library in bytes

speakers
LibrarySpeaker · object[]
required

List of characters included in the voice library

Last modified on May 27, 2026