---
title: "Get all podcast shows for automated management"
method: GET
path: "/podcast/shows"
tags: ["Podcast"]
---

# Get all podcast shows for automated management

`GET /podcast/shows`

Retrieves all podcast shows with their RSS URLs for platform distribution.
Each show includes its RSS feed URL for easy platform integration.
Supports optional pagination.

## Query parameters

- `page` integer
- `limit` integer

## Response `200`

List of podcast shows with RSS URLs for platform submission

- union
  - PodcastShow[] — Non-paginated response (when page and limit are not provided)
    - `id` string — Unique identifier for the podcast show
    - `name` string — Name of the podcast show (displayed on Spotify, Apple Music, etc.)
    - `description` string — Description of the podcast show (used in platform listings)
    - `author` string — Author/host name (displayed on podcast platforms)
    - `link` string — Website link for the podcast show
    - `email` string, email — Owner email address (used in RSS feed and platform settings)
    - `token` string — Client token for authentication
    - `createdOn` string, date-time — Creation timestamp
    - `updatedOn` string, date-time — Last update timestamp
    - `rssUrl` string — RSS feed URL for automated distribution to Spotify, Apple Music, and other podcast platforms
  - object — Paginated response (when page or limit are provided)
    - `shows` PodcastShow[]
      - `id` string — Unique identifier for the podcast show
      - `name` string — Name of the podcast show (displayed on Spotify, Apple Music, etc.)
      - `description` string — Description of the podcast show (used in platform listings)
      - `author` string — Author/host name (displayed on podcast platforms)
      - `link` string — Website link for the podcast show
      - `email` string, email — Owner email address (used in RSS feed and platform settings)
      - `token` string — Client token for authentication
      - `createdOn` string, date-time — Creation timestamp
      - `updatedOn` string, date-time — Last update timestamp
      - `rssUrl` string — RSS feed URL for automated distribution to Spotify, Apple Music, and other podcast platforms
    - `totalCount` integer — Total number of podcast shows
    - `page` integer — Current page number
    - `pageSize` integer — Number of items per page
    - `totalPages` integer — Total number of pages

## Other responses

- `401` — Unauthorized - valid API token required
- `500` — Internal server error

---

[API](https://skmtc.net/autocontentapi/apis/content-api.md) · [All operations](https://skmtc.net/autocontentapi/apis/content-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/autocontentapi/content-api/revisions/355890b6b4cc/schema)
