Downloading a recording involves a multi-step process using the Vobiz API. Because recording files are stored securely, every request to access the physical file must be authenticated with your API credentials.Documentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
Step-by-step guide to downloading recordings
Follow these three steps to successfully list, retrieve, and download a recording file.1. List all recordings
First, retrieve a list of available recordings to find therecording_id you need.
List Recordings
2. Retrieve Specific Recording Details
Once you have the ID, fetch its metadata to get therecording_url.
Get Recording Metadata
3. Download the physical file
Download via cURL
Note: The
-L flag ensures cURL follows any server redirects.Why Dashboard Playback Fails
Dashboard playback may fail with a 401 Unauthorized error because standard HTML<audio> and <video> tags cannot send custom HTTP headers (like X-Auth-ID).
How to fix this on your platform
1. Server-side proxy
Create an endpoint on your own backend (e.g.,/api/play?id=123) that fetches the file from Vobiz using your tokens and streams the binary data back to the dashboard.