Utor vix depulso vinitor cinis amplus aggredior
Uredo eum abundans undique cubo spero votum tenuis. Calco somnus repudiandae terebro ter. Illum supra toties supra molestiae attollo. Timor traho ducimus tepesco deporto conventus cito pariatur villa.
Overview
podcast-episodes / #487
Uredo eum abundans undique cubo spero votum tenuis. Calco somnus repudiandae terebro ter. Illum supra toties supra molestiae attollo. Timor traho ducimus tepesco deporto conventus cito pariatur villa.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcast-episodes/487" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcast-episodes/487" ); const podcastEpisode = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/podcast-episodes.d.ts https://example-data.com/types/podcast-episodes.d.ts
import type { PodcastEpisode } from "./types/podcast-episodes";
const res = await fetch(
"https://example-data.com/api/v1/podcast-episodes/487"
);
const podcastEpisode = (await res.json()) as PodcastEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcast-episodes/487"
)
podcast_episode = res.json() Response
{
"id": 487,
"podcastId": 24,
"title": "Utor vix depulso vinitor cinis amplus aggredior",
"slug": "utor-vix-depulso-vinitor-cinis-amplus-aggredior-487",
"description": "Uredo eum abundans undique cubo spero votum tenuis. Calco somnus repudiandae terebro ter. Illum supra toties supra molestiae attollo. Timor traho ducimus tepesco deporto conventus cito pariatur villa.",
"audioUrl": "https://example.com/podcasts/24/episodes/11.mp3",
"durationSeconds": 362,
"episodeNumber": 11,
"seasonNumber": 2,
"publishedAt": "2026-04-08T11:20:06.068Z",
"createdAt": "2026-04-07T14:50:02.380Z"
}