Unde toties vulgus adfectus cognomen tardus compello
Coaegresco abduco suspendo. Acceptus copia cetera amissio toties caput comparo tripudio valde desino.
Overview
podcast-episodes / #59
Coaegresco abduco suspendo. Acceptus copia cetera amissio toties caput comparo tripudio valde desino.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcast-episodes/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcast-episodes/59" ); 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/59"
);
const podcastEpisode = (await res.json()) as PodcastEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcast-episodes/59"
)
podcast_episode = res.json() Response
{
"id": 59,
"podcastId": 3,
"title": "Unde toties vulgus adfectus cognomen tardus compello",
"slug": "unde-toties-vulgus-adfectus-cognomen-tardus-compello-59",
"description": "Coaegresco abduco suspendo. Acceptus copia cetera amissio toties caput comparo tripudio valde desino.",
"audioUrl": "https://example.com/podcasts/3/episodes/14.mp3",
"durationSeconds": 338,
"episodeNumber": 14,
"seasonNumber": 2,
"publishedAt": "2023-11-16T17:02:47.598Z",
"createdAt": "2023-11-16T09:02:39.660Z"
}