Halvorson LLC Podcast
Host: Christian Casper
Mollitia defero subnecto. Adfero commodo sufficio porro.
Overview
podcasts / #20
Host: Christian Casper
Mollitia defero subnecto. Adfero commodo sufficio porro.
Halvorson LLC Podcast
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcasts/20" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcasts/20" ); 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/20"
);
const podcast = (await res.json()) as Podcast; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcasts/20"
)
podcast = res.json() Response
{
"id": 20,
"name": "Halvorson LLC Podcast",
"slug": "halvorson-llc-podcast-20",
"description": "Mollitia defero subnecto. Adfero commodo sufficio porro.",
"hostName": "Christian Casper",
"category": "business",
"language": "Spanish",
"coverUrl": "https://picsum.photos/seed/podcast-20/500/500",
"episodeCount": 227,
"isExplicit": false,
"createdAt": "2021-11-01T23:30:13.788Z",
"updatedAt": "2021-11-18T15:34:29.813Z"
}