GET Podcast Audios
Overview
The following table contains important information about the GET method in regards to receiving podcast audios for the player configuration.
| GET Podcast Audios | |
|---|---|
| Method | GET |
| URL or Endpoint | /podcast/podcastId |
| Headers | Not Applicable |
| Parameters | podcastId |
| Body | Not Applicable |
The description of the URL parameter is as follows:
| podcastId URL Parameter | |
|---|---|
| URL Parameter Name | podcastId |
| Mandatory | Yes |
| Type | string |
| Description | Unique Id of the podcast. |
Request Body
The request does not contain a request body
Response
{
"podcastId": "{podcastId}",
"title": "{title}",
"audios": [
{
"mediaId": "{mediaId}",
"title": "{title}",
"author": "{author}",
"publishDate": "2026-03-27T12:00:00.000Z",
"thumbnailUrl": "{thumbnailUrl}",
"duration": 224.664,
"durationString": "{durationString}",
"hlsUrl": "{hlsUrl}"
}
]
}
Information about the fields that appear when you receive the response are displayed in the table below.
| Field Name | Type | Description |
|---|---|---|
| podcastId | string | The unique Id of the podcast. |
| title | string | The title of the podcast. |
| audios | array[object] | Array of audio episodes in the podcast. |
| mediaId | string | The unique Id of the audio episode. |
| title | string | The title of the audio episode. |
| author | string | The author of the audio episode. |
| publishDate | string($date-time) | The publish date of the audio episode. |
| thumbnailUrl | string | URL of the audio episode thumbnail. |
| duration | number | Duration of the audio episode in seconds. |
| durationString | string | Human-readable duration of the audio episode. |
| hlsUrl | string | The HLS stream URL for the audio episode. |
If the action is successful, the service sends back an HTTP 200 or 201 response.
Errors
For information about the errors that are common to all actions, see Common Errors:
HTTP Status Code 400: Bad Request
HTTP Status Code 401: Unauthorized
HTTP Status Code 403: Forbidden
HTTP Status Code 404: Result Not Found
HTTP Status Code 500: Internal Server Error
HTTP Status Code 503: Backend Fetch Failed