Johnston - Kunze Podcast
Host: Kevin Torphy
Caveo viduo demo. Vito civis timidus occaecati artificiose.
Overview
podcasts / #12
Host: Kevin Torphy
Caveo viduo demo. Vito civis timidus occaecati artificiose.
Johnston - Kunze Podcast
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcasts/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcasts/12" ); 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/12"
);
const podcast = (await res.json()) as Podcast; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcasts/12"
)
podcast = res.json() Response
{
"id": 12,
"name": "Johnston - Kunze Podcast",
"slug": "johnston---kunze-podcast-12",
"description": "Caveo viduo demo. Vito civis timidus occaecati artificiose.",
"hostName": "Kevin Torphy",
"category": "business",
"language": "Portuguese",
"coverUrl": "https://picsum.photos/seed/podcast-12/500/500",
"episodeCount": 73,
"isExplicit": false,
"createdAt": "2024-12-12T11:18:36.114Z",
"updatedAt": "2024-12-29T21:30:23.739Z"
}