> ## Documentation Index
> Fetch the complete documentation index at: https://docs.musicgpt.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Conversion Details By Id Streaming

> Streams the generated audio for a conversion created with **Music AI v2**.

To listen to the live stream, replace the placeholders in the example request with your actual `task_id` and `conversion_id`, and poll the endpoint until streaming becomes available:
https://api.musicgpt.com/api/public/v2/MusicAI/stream?task_id={your_task_id}&conversion_id={your_conversion_id}

<Warning>
  **This endpoint is deprecated.** Streaming URLs are now delivered via **webhook**.
</Warning>


## OpenAPI

````yaml GET /v2/MusicAI/stream
openapi: 3.1.0
info:
  title: Musicgpt API
  version: 1.0.0
  description: API for retrieving conversion details by ID.
servers:
  - url: https://api.musicgpt.com/api/public
    description: Production server
security: []
paths:
  /v2/MusicAI/stream:
    get:
      summary: Get Conversion by ID Streaming
      description: >-
        Streams the generated audio for a conversion created with **Music AI
        v2**.


        To listen to the live stream, replace the placeholders in the example
        request with your actual `task_id` and `conversion_id`, and poll the
        endpoint until streaming becomes available:

        https://api.musicgpt.com/api/public/v2/MusicAI/stream?task_id={your_task_id}&conversion_id={your_conversion_id}
      parameters:
        - name: task_id
          in: query
          required: true
          schema:
            type: string
          description: Task ID associated with the conversion.
          example: 12345678-abcd-1234-efgh-567890abcdef
        - name: conversion_id
          in: query
          required: true
          schema:
            type: string
          description: Conversion ID to fetch details.
          example: 87654321-dcba-4321-hgfe-098765fedcba
      responses:
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
              example:
                detail: Upgrade Plans to access Streaming
      deprecated: true
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization

````