Deduco thermae aequus arcus
Tres suasoria quo complectus. Subiungo congregatio aro molestiae officia stillicidium solum facere. Verbum iusto confugo autus spoliatio pauper cena suffoco.
Overview
podcast-episodes / #554
Tres suasoria quo complectus. Subiungo congregatio aro molestiae officia stillicidium solum facere. Verbum iusto confugo autus spoliatio pauper cena suffoco.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcast-episodes/554" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcast-episodes/554" ); 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/554"
);
const podcastEpisode = (await res.json()) as PodcastEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcast-episodes/554"
)
podcast_episode = res.json() Response
{
"id": 554,
"podcastId": 27,
"title": "Deduco thermae aequus arcus",
"slug": "deduco-thermae-aequus-arcus-554",
"description": "Tres suasoria quo complectus. Subiungo congregatio aro molestiae officia stillicidium solum facere. Verbum iusto confugo autus spoliatio pauper cena suffoco.",
"audioUrl": "https://example.com/podcasts/27/episodes/10.mp3",
"durationSeconds": 4113,
"episodeNumber": 10,
"seasonNumber": null,
"publishedAt": "2025-04-04T12:24:35.639Z",
"createdAt": "2025-04-03T19:31:23.321Z"
}