Sugar Snap’s API provides you with podcast feeds formatted as JSON.
https://sugar-snap.dev/api/podcasts
Include these in the URL’s query string (see below for an example).
string
Full URL to the Podcast’s RSS feed (e.g. http://feeds.serialpodcast.org/serialpodcast )
curl "https://sugar-snap.dev/api/podcasts?feed_url=http%3A%2F%2Ffeeds.serialpodcast.org%2Fserialpodcast"
string
Name of the podcast.
string
Subtitle of the podcast if it has one, or an empty string if not.
string | null
URL to the podcast’s website (or null if not available).
object
Podcast’s cover art.
string | null
URL to the podcast’s cover art (or null if not available).
array
List of the podcast’s episodes.
string
Episode title.
string
Show notes in plain text.
object
Episode audio.
string
URL to the episode’s audio file.
The vast majority of the time this is an MP3 file.
number | null
Episode duration in seconds (or null if not available).
This is only a hint and might not be accurate.
number | null
Audio file size in bytes (or null if not available).
This is only a hint and might not be accurate.
string | null
The media type of the audio file (or null if not available).
Usually this will be
audio/mpeg
for MP3 files.