Get call recording
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://blackbox.dasha.ai/api/v1/calls/media/{recordId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://blackbox.dasha.ai/api/v1/calls/media/{recordId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://blackbox.dasha.ai/api/v1/calls/media/{recordId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)"<string>"{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Get call recording
Streams call recording audio as MP3. Supports both inline streaming for browser playback and file downloads. This endpoint is publicly accessible without authentication.
GET
/
api
/
v1
/
calls
/
media
/
{recordId}
Get call recording
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://blackbox.dasha.ai/api/v1/calls/media/{recordId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://blackbox.dasha.ai/api/v1/calls/media/{recordId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://blackbox.dasha.ai/api/v1/calls/media/{recordId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)"<string>"{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Playback Options
- inBrowser=true (default): Streams inline for browser playback
- inBrowser=false: Forces file download as
call_{recordId}.mp3
Public Access
This endpoint does not require authentication and can be accessed publicly.
Use Cases
- Embed recordings in web applications
- Direct playback in audio players
- Download recordings for offline review
Was this page helpful?