Skip to main content
GET
/
api
/
v1
/
Account
/
{auth_id}
/
Call
/
{call_uuid}
/
Stream
List audio streams
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/
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.
Authentication required:
  • X-Auth-ID - Your account Auth ID
  • X-Auth-Token - Your account Auth Token

Path parameters

FieldTypeRequiredDescription
auth_idstringYesYour account ID.
call_uuidstringYesUUID of the call.

Query Parameters

FieldTypeRequiredDescription
limitintegerNoPagination limit. Default: 20
offsetintegerNoPagination 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}'

Authorizations

X-Auth-ID
string
header
required

Your Vobiz account Auth ID

X-Auth-Token
string
header
required

Your Vobiz account Auth Token

Path Parameters

auth_id
string
required

Your account Auth ID

Example:

"MA_XXXXXX"

call_uuid
string
required

Response

200

Active streams