This endpoint returns every Stream object currently associated with a call — both active streams and streams that have already stopped during the call's lifetime.
HTTP Request
GET
https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/Path Parameters:
- •
{auth_id}- Your account ID - •
{call_uuid}- UUID of the call
Query Parameters:
- •
limit- Pagination limit. Default: 20 - •
offset- Pagination offset. Default: 0
Response
Success Response (200 OK)
Response - 200 OK
{
"page": 1,
"per_page": 10,
"total": 1,
"objects": [
{
"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
}
]
}Example
cURL
curl -X GET 'https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/?limit=10' \
-H 'X-Auth-ID: {auth_id}' \
-H 'X-Auth-Token: {auth_token}'