Podcast Reviews

GET/:podcastIdOrSlug/reviews

Get the reviews for a podcast

TOKEN

Authentication

This endpoint requires an API token. You can learn more about how to get an API token from the authentication page.

URL

https://api.podengine.ai/api/v1/podcasts/:podcastIdOrSlug/reviews

Try It

1const options = {
2  method: "GET",
3  headers: {
4    "Content-Type": "application/json",
5    "Authorization": "YOUR_API_TOKEN"
6  }
7};
8
9fetch("https://api.podengine.ai/api/v1/podcasts/:podcastIdOrSlug/reviews", options)
10  .then(response => response.json())
11  .then(data => console.log(data))
12  .catch(error => console.error('Error:', error));

API Specification

Path Parameters

PropertyTypeDescription
podcastIdOrSlug
string

Podengine ID, Apple ID, or slug

200

Success Response

PropertyTypeDescription
status
literal: OK

data
object

podcast
object

authornullable
string

genres
array
of
string

id
string

imageUrlnullable
string

language
string

lastEpisodePublishedAt
date

slug
string

title
string

podcastReviews
object

podcastId
string

appleId
number

spotifyIdnullable
string

applePodcastsReviewnullable
object

appleId
number

scrapedAt
date

country
string

reviewsCount
number

ratingnullable
number

oneStarCount
number

twoStarCount
number

threeStarCount
number

fourStarCount
number

fiveStarCount
number

spotifyReviewnullable
object

spotifyId
string

scrapedAt
date

reviewsCount
number

ratingnullable
number

castboxnullable
object

scrapedAt
date

plays
number

subscribers
number