Altenwerth, Barrows and Rippin Podcast
Host: Dr. Taylor Leannon
Vorago custodia depulso trado coma caveo credo. Aureus thorax copiose animi.
Overview
podcasts / #8
Host: Dr. Taylor Leannon
Vorago custodia depulso trado coma caveo credo. Aureus thorax copiose animi.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcasts/8" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcasts/8" ); const podcast = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/podcasts.d.ts https://example-data.com/types/podcasts.d.ts
import type { Podcast } from "./types/podcasts";
const res = await fetch(
"https://example-data.com/api/v1/podcasts/8"
);
const podcast = (await res.json()) as Podcast; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcasts/8"
)
podcast = res.json() Response
{
"id": 8,
"name": "Altenwerth, Barrows and Rippin Podcast",
"slug": "altenwerth-barrows-and-rippin-podcast-8",
"description": "Vorago custodia depulso trado coma caveo credo. Aureus thorax copiose animi.",
"hostName": "Dr. Taylor Leannon",
"category": "business",
"language": "Mandarin",
"coverUrl": "https://picsum.photos/seed/podcast-8/500/500",
"episodeCount": 63,
"isExplicit": false,
"createdAt": "2022-03-29T08:25:51.568Z",
"updatedAt": "2022-04-26T01:41:54.642Z"
}