List all audio streams on a live call.
curl --request GET \
--url https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/ \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'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.
GET https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/
X-Auth-ID - Your account Auth IDX-Auth-Token - Your account Auth Token| Field | Type | Required | Description |
|---|---|---|---|
auth_id | string | Yes | Your account ID. |
call_uuid | string | Yes | UUID of the call. |
| Field | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Pagination limit. Default: 20 |
offset | integer | No | Pagination offset. Default: 0 |
{
"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
}
]
}
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}'
Was this page helpful?
curl --request GET \
--url https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/ \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'