355890b6b4cc
Get all podcast episodes for user (deprecated)
Deprecated: this broad all-episodes endpoint is expensive for large accounts and will be removed later. Use /podcast/episodes/unallocated for episodes not assigned to any show, or /podcast/shows/{podcastId}/episodes for show-specific episode lists.
Retrieves all podcast episodes owned by the user, including:
- Episodes assigned to one or more podcast shows (with podcast show IDs)
- Orphaned episodes not yet assigned to any podcast show (with empty podcastShowIds array)
Each episode includes an array of podcast show IDs it belongs to, supporting episodes that appear in multiple shows. Useful for getting a comprehensive view of all published episodes and their distribution across shows. Supports optional pagination.
Query parameters
Page number for pagination (starts at 1). If not provided, returns all results.
Number of items per page (max 100, default 50 if page is specified)
Response
List of all episodes with platform-ready metadata and associated podcast show IDs
Example response
[
{
"podcastShowIds": [
"abc123-def456",
"ghi789-jkl012"
]
}
]