Get Conversation Audio
curl --request GET \
--url https://api.threetone.in/v1/voiceai/conversations/{conversation_id}/audio \
--header 'x-api-key: <api-key>'import requests
url = "https://api.threetone.in/v1/voiceai/conversations/{conversation_id}/audio"
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.threetone.in/v1/voiceai/conversations/{conversation_id}/audio', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Conversations
Get Conversation Audio
Stream audio file for a conversation.
GET
/
v1
/
voiceai
/
conversations
/
{conversation_id}
/
audio
Get Conversation Audio
curl --request GET \
--url https://api.threetone.in/v1/voiceai/conversations/{conversation_id}/audio \
--header 'x-api-key: <api-key>'import requests
url = "https://api.threetone.in/v1/voiceai/conversations/{conversation_id}/audio"
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.threetone.in/v1/voiceai/conversations/{conversation_id}/audio', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}⌘I