---
title: "Podcast Episodes"
method: GET
path: "/api/podcast_episodes"
tags: ["podcast_episodes"]
---

# Podcast Episodes

`GET /api/podcast_episodes`

Retrieve a list of podcast episodes published on the platform.

        ### Integration Guidance:
        - Bypasses authentication (can be accessed publicly).
        - Only returns active episodes belonging to published/reachable podcasts.
        - Episodes are returned in reverse chronological order based on their publication date.
        - The `username` query parameter is the unique slug of the podcast channel (e.g. `codenewbie`).

        It supports pagination, each page will contain 30 episodes by default.

## Query parameters

- `page` integer
- `per_page` integer
- `username` string

## Response `200`

A List of Podcast episodes filtered by username

- PodcastEpisodeIndex[]
  - `type_of` string, required
  - `id` integer, required
  - `class_name` string, required
  - `path` string, path, required
  - `title` string, required
  - `image_url` string, url, required — Podcast episode image url or podcast image url
  - `podcast` SharedPodcast, required — The podcast that the resource belongs to
    - `title` string
    - `slug` string
    - `image_url` string, url — Podcast image url

## Other responses

- `404` — Unknown Podcast username

## Changes

> 59 revisions in range; 7 could not be searched.

- **2026-07-13** (v1) `189b62b952ea` — 1 breaking
  - removed the media type `application/json` for the response with the status `404`
- **2026-07-13** (v1) `7db6ba099285` — 1 breaking
  - removed the media type `application/json` for the response with the status `404`
- **2026-05-28** (v1) `6550ad7be94f` — 1 info
  - added the media type `application/json` for the response with the status `404`
- **2026-03-03** (v1) `c9e7662755c2` — 1 breaking
  - removed the media type `application/json` for the response with the status `404`
- **2023-12-18** (v1) `1c81594090c0` — 1 info
  - added the media type `application/json` for the response with the status `404`

[Full history](https://skmtc.dev/forem/apis/forem-api-v1/changes/api/podcast_episodes/get.md)

---

[API](https://skmtc.dev/forem/apis/forem-api-v1.md) · [All operations](https://skmtc.dev/forem/apis/forem-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/forem/forem-api-v1/revisions/1f64f71fc2a7/schema)
