Skip to main content
GET
/
api
/
v1
/
agents
/
{uuid}
/
voice
Get all voice settings
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/agents/{uuid}/voice \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Voice settings retrieved successfully",
  "data": {
    "uuid": "3267946b-0b4b-4c5e-a207-d52ae367632f",
    "interaction": {
      "customer_speak_first": false,
      "inbound_first_message": "Hello, how can I help you today?",
      "outbound_first_message": "Hi, I'm calling about your enquiry.",
      "voice_mail_message": "Please call us back.",
      "end_call_message": "Goodbye",
      "silence_message": "Are you still there?",
      "max_silence_prompts": 30
    },
    "interruption": {
      "mode": "advance",
      "advanced": {
        "allow_interruptions": true,
        "preemptive_generation": false,
        "manual_word_count_interrupt": false,
        "resume_after_false_interruption": false,
        "min_endpointing_delay": 0.3,
        "max_endpointing_delay": 1,
        "min_interruption_duration": 0.5,
        "min_interruption_words": 1,
        "balanced_interrupt_word_count": 2,
        "false_interruption_timeout": 2
      }
    },
    "voice_profile": {
      "language": "en",
      "voice_uuid": "16a8b0dd-3a15-4e39-8cc0-384196da952b",
      "voice_name": "Elegant Narrator"
    },
    "voice_advanced": {
      "stability": 0.9,
      "similarity": 0.9,
      "style": 0,
      "speed": 0.95,
      "speaker_boost": true
    },
    "call_behavior": {
      "audio_recording": true,
      "background_sound": true,
      "background_sound_ambience": "office",
      "background_sound_volume": 0.3,
      "noise_cancellation": true,
      "silence_timeout_seconds": 60,
      "max_call_duration_seconds": 1800,
      "max_call_duration_message": "Time limit reached. Goodbye!"
    },
    "compliance": {
      "eu_gdpr_compliance": true,
      "hipaa_compliance": false
    },
    "normalizers": {
      "outbound": {
        "default_prefix": null,
        "condition_length": null,
        "condition_prefix": null
      },
      "inbound": {
        "default_prefix": null,
        "condition_length": null,
        "condition_prefix": null
      }
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.mihu.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

Response

Voice settings retrieved