Podcast episode with audio content, metadata, host information, episode details, and engagement metrics. Used for podcast platforms and audio content management.
https://api.mockly.codes/podcasts?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/podcastsGet a collection of podcasts
/content/podcasts/podcasts/:idGet a single podcast by ID
/content/podcasts/:id/podcasts/metaGet resource metadata and schema
/content/podcasts/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/podcasts?q=laptopGET https://api.mockly.codes/podcasts?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 podcasts
fetch('https://api.mockly.codes/podcasts?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/podcasts?count=10'
)
data = response.json()curl "https://api.mockly.codes/podcasts?count=10"fetch('https://api.mockly.codes/podcasts?nocache=true')idintegerUnique identifier for the podcast episode
random_inttitlestringTitle of the podcast episode
sentencedescriptionstringEpisode description or show notes
paragraphhoststringFull name of the podcast host or hosts
namecategorystringPodcast category or genre (e.g., Technology, Business, Comedy, True Crime)
podcast_categoryepisode_numberintegerEpisode number in the podcast series
random_intseasonintegerSeason number if the podcast has seasons
random_intdurationintegerEpisode duration in minutes
podcast_durationrelease_datestringDate when the episode was released
past_datedateplaysintegerTotal number of times the episode has been played or streamed
random_intratingnumberAverage listener rating, typically on a scale of 1-5
ratinglanguagestringLanguage code of the podcast content (e.g., en, es, fr)
languageaudio_urlstringURL to the audio file or streaming link for the episode
urluricoverstringURL to the episode cover art or thumbnail image
image_urluricountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request