There are a few methods for retrieving information about one or more podcasts from the Spotify catalog. For example, the description of a podcast or all of a podcast's episodes.
$show = $api->getShow('SHOW_ID');
echo '<b>' . $show->name . '</b>';
$shows = $api->getShows([
'SHOW_ID',
'SHOW_ID',
]);
foreach ($shows->shows as $show) {
echo '<b>' . $show->name . '</b> <br>';
}
$episode = $api->getEpisode('EPISODE_ID');
echo '<b>' . $episode->name . '</b>';
$episodes = $api->getEpisodeS([
'EPISODE_ID',
'EPISODE_ID',
]);
foreach ($episodes->episodes as $episode) {
echo '<b>' . $episode->name . '</b> <br>';
}
$episodes = $api->getShowEpisodes('SHOW_ID');
foreach ($episodes->items as $episode) {
echo '<b>' . $episode->name . '</b> <br>';
}
Please see the method reference for more available options for each method.