Get a single voice by ID

Required scope: convai:read

Path Parameters
  • voiceId
    Type: string
    required

    ID of the voice to retrieve

Responses
  • application/json
  • application/json
  • 404

    Voice not found

  • 500

    Internal server error

Request Example for get/voices/{voiceId}
curl 'https://api.simwood.com/convai/v1/voices/{voiceId}' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "id": "string",
  "name": "string",
  "category": "string",
  "labels": {
    "additionalProperty": "string"
  },
  "tags": [
    "string"
  ],
  "status": "active",
  "description": "string",
  "preview_url": "string",
  "settings": {
    "stability": 1,
    "similarity_boost": 1,
    "style": 1,
    "use_speaker_boost": true
  }
}