Voluptatem thema nulla aeger defaeco
Cognomen delibero communis amo tredecim subito depopulo curtus synagoga. At et arbitro cotidie vociferor. Aegre addo cohors autus dolore tollo studio.
Overview
podcast-episodes / #454
Cognomen delibero communis amo tredecim subito depopulo curtus synagoga. At et arbitro cotidie vociferor. Aegre addo cohors autus dolore tollo studio.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcast-episodes/454" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcast-episodes/454" ); 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/454"
);
const podcastEpisode = (await res.json()) as PodcastEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcast-episodes/454"
)
podcast_episode = res.json() Response
{
"id": 454,
"podcastId": 23,
"title": "Voluptatem thema nulla aeger defaeco",
"slug": "voluptatem-thema-nulla-aeger-defaeco-454",
"description": "Cognomen delibero communis amo tredecim subito depopulo curtus synagoga. At et arbitro cotidie vociferor. Aegre addo cohors autus dolore tollo studio.",
"audioUrl": "https://example.com/podcasts/23/episodes/5.mp3",
"durationSeconds": 4030,
"episodeNumber": 5,
"seasonNumber": 1,
"publishedAt": "2026-04-26T12:46:42.635Z",
"createdAt": "2026-04-25T14:08:52.035Z"
}