> ## 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.

# List all Audio Streams

> List all audio streams - both active and stopped - associated with a Vobiz call UUID, including each stream's status, codec, track direction, and WebSocket URL.

```http theme={null}
GET https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/
```

This endpoint returns every [Stream object](/audio-streams/stream-object) currently associated with a call - both active streams and streams that have already stopped during the call's lifetime.

<Info>
  **Authentication required:**

  * `X-Auth-ID` - Your account Auth ID
  * `X-Auth-Token` - Your account Auth Token
</Info>

## Path parameters

| Field       | Type   | Required | Description       |
| ----------- | ------ | -------- | ----------------- |
| `auth_id`   | string | Yes      | Your account ID.  |
| `call_uuid` | string | Yes      | UUID of the call. |

## Query Parameters

| Field    | Type    | Required | Description                   |
| -------- | ------- | -------- | ----------------------------- |
| `limit`  | integer | No       | Pagination limit. Default: 20 |
| `offset` | integer | No       | Pagination offset. Default: 0 |

## Response

### Success Response (200 OK)

```json Response - 200 OK theme={null}
{
  "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

```bash cURL theme={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}'
```


## OpenAPI

````yaml GET /api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/
openapi: 3.0.3
info:
  title: Vobiz API
  description: >
    The Vobiz API lets you make calls, manage phone numbers, configure SIP
    trunks, 

    and access account data programmatically.


    **Base URL:** `https://api.vobiz.ai`


    **Authentication:** All requests require `X-Auth-ID` and `X-Auth-Token`
    headers.

    Obtain these from your [Vobiz Console](https://console.vobiz.ai).
  version: '1.0'
  contact:
    email: support@vobiz.ai
    url: https://vobiz.ai
servers:
  - url: https://api.vobiz.ai
    description: Production
security:
  - AuthID: []
    AuthToken: []
tags:
  - name: Account
    description: Manage your account details and credentials
  - name: Balance
    description: Retrieve balance and transaction history
  - name: Calls
    description: Make and manage outbound calls
  - name: Live Calls
    description: Retrieve and control in-progress calls
  - name: CDR
    description: Call detail records and history
  - name: Sub-Accounts
    description: Create and manage sub-accounts
  - name: Phone Numbers
    description: Manage phone numbers on your account
  - name: Trunks
    description: Configure SIP trunks for inbound and outbound calling
  - name: Conference
    description: Manage conference calls and members
  - name: Applications
    description: Manage voice and messaging applications with webhook URLs
  - name: Endpoints
    description: Manage SIP endpoints for IP phones, softphones, and SIP clients
  - name: Partner API
    description: >-
      Reseller and white-label endpoints for managing customer sub-accounts,
      balance transfers, transactions, CDRs, and DIDs across your partner
      ecosystem
  - name: Sub-Account KYC
    description: >-
      Per-sub-account KYC verification (PAN, GST, CIN, Aadhaar, DigiLocker) and
      hosted email/redirect KYC sessions. Authenticated as the parent main
      account.
  - name: Sub-Account KYC (Test Mode)
    description: >-
      Mock KYC endpoints that never call the upstream provider. Drive verified /
      failed / pending / error outcomes with magic inputs for integration
      testing.
paths:
  /api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/:
    get:
      tags:
        - Audio Streams
      summary: List audio streams
      description: List all audio streams on a live call.
      operationId: list-streams
      parameters:
        - $ref: '#/components/parameters/AuthId'
        - name: call_uuid
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Active streams
components:
  parameters:
    AuthId:
      name: auth_id
      in: path
      required: true
      description: Your account Auth ID
      schema:
        type: string
        example: MA_XXXXXX
  securitySchemes:
    AuthID:
      type: apiKey
      in: header
      name: X-Auth-ID
      description: Your Vobiz account Auth ID
    AuthToken:
      type: apiKey
      in: header
      name: X-Auth-Token
      description: Your Vobiz account Auth Token

````