Retrieve an Audio Stream
Get details of a specific audio stream on a call using its stream ID.
This endpoint returns a full Stream object for a specific stream attached to a given call. Use it to check the current status, configuration, and timing of an ongoing or completed stream.
HTTP Request
GET
https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/{stream_id}/Path Parameters:
- •
{auth_id}- Your account ID - •
{call_uuid}- UUID of the call - •
{stream_id}- Unique ID of the stream
Response
Success Response (200 OK)
Response - 200 OK
{
"stream_id": "728e273b-9c2c-4902-8509-2f88224cd3d5",
"call_uuid": "c6ebf396-59c2-4f2a-8771-fbb5d981e301",
"service_url": "wss://your-server.com/ws",
"status_callback_url": "https://your-server.com/stream-status",
"bidirectional": true,
"audio_track": "both",
"content_type": "audio/x-l16;rate=16000",
"status": "in-progress",
"start_time": "2026-04-24T09:25:00Z",
"end_time": null
}Error Response (404 Not Found)
Response - 404 Not Found
{
"api_id": "correlation-id-uuid",
"error": "Stream not found"
}Example
cURL
curl -X GET 'https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/{stream_id}/' \
-H 'X-Auth-ID: {auth_id}' \
-H 'X-Auth-Token: {auth_token}'