ModelsVersionsModelversionidVoices

Активные TTS-голоса под конкретной версией модели. Возвращает только IsActive=true. Используется фронтом после выбора (Author × Model × Version) для рендера списка голосов с preview.

GET
/Models/versions/{modelVersionId}/voices
AuthorizationBearer <token>

JWT Authorization header using Bearer scheme

In: header

Path Parameters

modelVersionId*string
Formatuuid

Response Body

application/json

curl -X GET "https://api.speaknode.com/api/Models/versions/497f6eca-6276-4993-bfeb-53cbbbba6f08/voices"
{
  "voices": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "code": "string",
      "name": "string",
      "description": "string",
      "preview_url": "string",
      "is_active": true
    }
  ]
}