latestOpenAPI 3.0.02026-08-1610635191.3 KB

355890b6b4cc

Podcast

Get all episodes for automated podcast management

Retrieves all episodes for a specific podcast show. Each episode includes an array of podcast show IDs it belongs to (including the specified one and any others). Useful for monitoring automated podcast publishing and episode management. Supports optional pagination.

get/podcast/shows/{podcastId}/episodes

Path parameters

podcastIdstring required

The podcast show ID

Query parameters

pageinteger

Page number for pagination (starts at 1). If not provided, returns all results.

limitinteger

Number of items per page (max 100, default 50 if page is specified)

Response

List of episodes with platform-ready metadata and associated podcast show IDs

OR

Example response

[
  {
    "podcastShowIds": [
      "abc123-def456",
      "ghi789-jkl012"
    ]
  }
]