Get available speakers

GET /voicevox/speakers

Responses

  • 200 application/json

    Default Response

    Hide response attributes Show response attributes object
    • status boolean

      Default value is true.

    • message string

      Default value is success.

    • result object

      Additional properties are allowed.

      Hide result attribute Show result attribute object
      • speakers array[object]

        List of available speakers

        Hide speakers attributes Show speakers attributes object
        • id string

          Speaker id

        • name string

          Speaker name in Japanese

        • styles array[object]
          Hide styles attributes Show styles attributes object
          • id string

            Speaker id, this is used for synthesis

          • name string

            Speaker name in Japanese

  • 400 application/json

    Invalid request error

    Hide response attributes Show response attributes object
  • 401 application/json

    Authorization error

    Hide response attributes Show response attributes object
  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
GET /voicevox/speakers
curl \
 -X GET https://api.itsrose.rest/voicevox/speakers
Response examples (200)
{
  "status": true,
  "message": "success",
  "result": {
    "speakers": [
      {
        "id": "string",
        "name": "string",
        "styles": [
          {
            "id": "string",
            "name": "string"
          }
        ]
      }
    ]
  }
}
Response examples (400)
{
  "status": false,
  "message": "string",
  "result": {}
}
Response examples (401)
{
  "status": false,
  "message": "string",
  "result": {}
}
Response examples (500)
{
  "status": false,
  "message": "string",
  "result": {}
}