Get Voices
curl --request GET \
--url https://api.voicebot.studio/api/v1/assistants/voices \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.voicebot.studio/api/v1/assistants/voices"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.voicebot.studio/api/v1/assistants/voices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.voicebot.studio/api/v1/assistants/voices"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
{
"language": "<string>",
"name": "<string>"
}
]Assistants
Get Voices
Fetch all available voices from MongoDB.
GET
/
api
/
v1
/
assistants
/
voices
Get Voices
curl --request GET \
--url https://api.voicebot.studio/api/v1/assistants/voices \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.voicebot.studio/api/v1/assistants/voices"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.voicebot.studio/api/v1/assistants/voices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.voicebot.studio/api/v1/assistants/voices"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
{
"language": "<string>",
"name": "<string>"
}
]⌘I