Get Voice Gallery
curl --request GET \
--url https://api.voice-agents.miraiminds.co/v1/admin/voice-gallery \
--header 'x-public-key: <api-key>'import requests
url = "https://api.voice-agents.miraiminds.co/v1/admin/voice-gallery"
headers = {"x-public-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const url = 'https://api.voice-agents.miraiminds.co/v1/admin/voice-gallery';
const options = {method: 'GET', headers: {'x-public-key': '<api-key>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"status_code": 200,
"message": "Voices fetched successfully.",
"data": [
{
"_id": "<string>",
"slug": "<string>",
"sampleAudio": "<string>"
}
]
}Voice Gallery
Get Voice Gallery
GET
/
v1
/
admin
/
voice-gallery
Get Voice Gallery
curl --request GET \
--url https://api.voice-agents.miraiminds.co/v1/admin/voice-gallery \
--header 'x-public-key: <api-key>'import requests
url = "https://api.voice-agents.miraiminds.co/v1/admin/voice-gallery"
headers = {"x-public-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const url = 'https://api.voice-agents.miraiminds.co/v1/admin/voice-gallery';
const options = {method: 'GET', headers: {'x-public-key': '<api-key>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"status_code": 200,
"message": "Voices fetched successfully.",
"data": [
{
"_id": "<string>",
"slug": "<string>",
"sampleAudio": "<string>"
}
]
}Authorizations
PublicKeyAuthPrivateKeyAuth
Response
Voice Gallery fetched successfully
⌘I