Skip to main content
The ratings endpoints expose user-generated ratings (1–5 stars) and reviews (optional free-text title and body) from third-party platforms. Today the source is Apple Podcasts customer reviews, covering the us, gb, ca, au, nz, and ie storefronts.
These endpoints surface listener opinion. For chart position (where a show ranks on Apple/Spotify Top Podcasts) use /v1/podcasts/rankings instead.
returns the most recent ratings for the podcast across every platform and locale, newest first. Use these endpoints when you want to:
  • Display a podcast’s review history with star scores, titles, and body text.
  • Render the per-platform star average + histogram on a podcast detail page.
  • Pull a short narrative summary of what listeners are saying — without parsing hundreds of reviews yourself.
  • Compare reception across countries (e.g. US vs UK reviews for the same show).

Anatomy of a rating

Optional fields are omitted when no data is available.

List ratings for a podcast

Returns the most recent ratings for the podcast, newest first.
Response (truncated)

Query parameters

Summarize a podcast’s ratings

A one-call aggregate: the star average and histogram for each (platform, locale) the podcast is rated on, a combined cross-source roll-up, plus the latest narrative summary when available.
Response
entries carries one row per (platform, locale) the podcast has been rated on, or null when the podcast hasn’t been rated yet. combined is the count-weighted roll-up across every entry — platform_slug and locale are empty to signal the cross-source view — and is null when there’s nothing to aggregate. sentiment is a short narrative summary (typically 2–5 sentences) over the most recent ratings, intended for non-technical readers — analysts, brand and PR teams, talent agents, journalists, producers. It paraphrases what listeners are saying rather than quoting individual reviews, and is null when one hasn’t been generated yet (e.g. on freshly ingested podcasts or shows with very few ratings). Returns 404 when the podcast can’t be resolved by slug, ID, or numeric iTunes ID.

Sentiment summary fields

Choosing the right endpoint

  • Podcasts overview — full Podcast object and the other sub-resources.
  • Rankings — Apple and Spotify chart positions; the complementary signal to user ratings.
  • External links — platform-level audience-size attributes (followers, subscribers) on Spotify, YouTube, etc.