Vereor strues cui terreo
Officiis certe curo aperte ipsam torqueo acerbitas. Cunabula a aro omnis causa temptatio totus.
Overview
podcast-episodes / #341
Officiis certe curo aperte ipsam torqueo acerbitas. Cunabula a aro omnis causa temptatio totus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcast-episodes/341" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcast-episodes/341" ); 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/341"
);
const podcastEpisode = (await res.json()) as PodcastEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcast-episodes/341"
)
podcast_episode = res.json() Response
{
"id": 341,
"podcastId": 17,
"title": "Vereor strues cui terreo",
"slug": "vereor-strues-cui-terreo-341",
"description": "Officiis certe curo aperte ipsam torqueo acerbitas. Cunabula a aro omnis causa temptatio totus.",
"audioUrl": "https://example.com/podcasts/17/episodes/19.mp3",
"durationSeconds": 1871,
"episodeNumber": 19,
"seasonNumber": null,
"publishedAt": "2023-08-17T13:13:00.646Z",
"createdAt": "2023-08-17T01:25:28.594Z"
}