Solus vobis aurum acceptus
Ventus vespillo coepi tamquam debitis defaeco utrum voveo provident. Appello reprehenderit sono theca doloremque. Decipio adipiscor strenuus autem cogito thema vitae.
Overview
podcast-episodes / #83
Ventus vespillo coepi tamquam debitis defaeco utrum voveo provident. Appello reprehenderit sono theca doloremque. Decipio adipiscor strenuus autem cogito thema vitae.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcast-episodes/83" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcast-episodes/83" ); 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/83"
);
const podcastEpisode = (await res.json()) as PodcastEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcast-episodes/83"
)
podcast_episode = res.json() Response
{
"id": 83,
"podcastId": 5,
"title": "Solus vobis aurum acceptus",
"slug": "solus-vobis-aurum-acceptus-83",
"description": "Ventus vespillo coepi tamquam debitis defaeco utrum voveo provident. Appello reprehenderit sono theca doloremque. Decipio adipiscor strenuus autem cogito thema vitae.",
"audioUrl": "https://example.com/podcasts/5/episodes/3.mp3",
"durationSeconds": 4412,
"episodeNumber": 3,
"seasonNumber": 2,
"publishedAt": "2023-08-18T10:06:34.975Z",
"createdAt": "2023-08-17T23:06:31.164Z"
}