Subnecto uberrime ago thermae delicate ipsam
Confugo curo adversus. Acerbitas pauper degenero adiuvo ago verumtamen causa cumque teneo.
Overview
podcast-episodes / #136
Confugo curo adversus. Acerbitas pauper degenero adiuvo ago verumtamen causa cumque teneo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcast-episodes/136" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcast-episodes/136" ); 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/136"
);
const podcastEpisode = (await res.json()) as PodcastEpisode; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcast-episodes/136"
)
podcast_episode = res.json() Response
{
"id": 136,
"podcastId": 8,
"title": "Subnecto uberrime ago thermae delicate ipsam",
"slug": "subnecto-uberrime-ago-thermae-delicate-ipsam-136",
"description": "Confugo curo adversus. Acerbitas pauper degenero adiuvo ago verumtamen causa cumque teneo.",
"audioUrl": "https://example.com/podcasts/8/episodes/1.mp3",
"durationSeconds": 1780,
"episodeNumber": 1,
"seasonNumber": 2,
"publishedAt": "2023-10-20T08:57:27.090Z",
"createdAt": "2023-10-19T19:37:45.370Z"
}