Vito derelinquo brevis quae super
Ulciscor certus adnuo deserunt ars. Optio synagoga incidunt audeo tergo ad cedo adipiscor. Reprehenderit averto tendo delicate comprehendo alveus comedo acquiro curiositas asperiores.
Overview
podcast-episodes / #441
Ulciscor certus adnuo deserunt ars. Optio synagoga incidunt audeo tergo ad cedo adipiscor. Reprehenderit averto tendo delicate comprehendo alveus comedo acquiro curiositas asperiores.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcast-episodes/441" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcast-episodes/441" ); 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/441"
);
const podcastEpisode = (await res.json()) as PodcastEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcast-episodes/441"
)
podcast_episode = res.json() Response
{
"id": 441,
"podcastId": 22,
"title": "Vito derelinquo brevis quae super",
"slug": "vito-derelinquo-brevis-quae-super-441",
"description": "Ulciscor certus adnuo deserunt ars. Optio synagoga incidunt audeo tergo ad cedo adipiscor. Reprehenderit averto tendo delicate comprehendo alveus comedo acquiro curiositas asperiores.",
"audioUrl": "https://example.com/podcasts/22/episodes/19.mp3",
"durationSeconds": 5138,
"episodeNumber": 19,
"seasonNumber": 1,
"publishedAt": "2025-10-07T00:32:14.450Z",
"createdAt": "2025-10-06T07:41:11.073Z"
}