Colo venio tenetur tantillus patrocinor auditor
Quis vigor aegre adstringo trucido comprehendo admiratio caput utilis. Venustas truculenter ambitus ascit sublime currus culpa terror arbor verbera. Tolero antepono talis.
Overview
podcast-episodes / #178
Quis vigor aegre adstringo trucido comprehendo admiratio caput utilis. Venustas truculenter ambitus ascit sublime currus culpa terror arbor verbera. Tolero antepono talis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcast-episodes/178" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcast-episodes/178" ); 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/178"
);
const podcastEpisode = (await res.json()) as PodcastEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcast-episodes/178"
)
podcast_episode = res.json() Response
{
"id": 178,
"podcastId": 10,
"title": "Colo venio tenetur tantillus patrocinor auditor",
"slug": "colo-venio-tenetur-tantillus-patrocinor-auditor-178",
"description": "Quis vigor aegre adstringo trucido comprehendo admiratio caput utilis. Venustas truculenter ambitus ascit sublime currus culpa terror arbor verbera. Tolero antepono talis.",
"audioUrl": "https://example.com/podcasts/10/episodes/1.mp3",
"durationSeconds": 5986,
"episodeNumber": 1,
"seasonNumber": null,
"publishedAt": "2024-05-25T03:19:43.216Z",
"createdAt": "2024-05-24T13:24:16.025Z"
}