Caste accusator blanditiis adhaero summa thermae
Contabesco acerbitas ancilla defaeco peior ager statua adfero ventus officiis. Sollers pecco thema.
Overview
podcast-episodes / #11
Contabesco acerbitas ancilla defaeco peior ager statua adfero ventus officiis. Sollers pecco thema.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcast-episodes/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcast-episodes/11" ); 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/11"
);
const podcastEpisode = (await res.json()) as PodcastEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcast-episodes/11"
)
podcast_episode = res.json() Response
{
"id": 11,
"podcastId": 1,
"title": "Caste accusator blanditiis adhaero summa thermae",
"slug": "caste-accusator-blanditiis-adhaero-summa-thermae-11",
"description": "Contabesco acerbitas ancilla defaeco peior ager statua adfero ventus officiis. Sollers pecco thema.",
"audioUrl": "https://example.com/podcasts/1/episodes/11.mp3",
"durationSeconds": 1455,
"episodeNumber": 11,
"seasonNumber": null,
"publishedAt": "2025-01-24T19:27:45.863Z",
"createdAt": "2025-01-24T03:39:43.190Z"
}