JavaScript
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));
"<string>"
Streams call recording audio as MP3. Supports both inline streaming for browser playback and file downloads. This endpoint is publicly accessible without authentication.
call_{recordId}.mp3
Record identifier
Stream inline or download
Returns audio stream successfully
The response is of type file.
file
Was this page helpful?