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>'
import requests

url = "https://{subdomain}.mihu.ai/api/v1/agents/{uuid}/voice"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://{subdomain}.mihu.ai/api/v1/agents/{uuid}/voice', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://{subdomain}.mihu.ai/api/v1/agents/{uuid}/voice",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://{subdomain}.mihu.ai/api/v1/agents/{uuid}/voice"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://{subdomain}.mihu.ai/api/v1/agents/{uuid}/voice")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://{subdomain}.mihu.ai/api/v1/agents/{uuid}/voice")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "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
      }
    }
  }
}

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