Fritsch LLC Podcast
Host: Dr. Mona Dickens
Contabesco officia agnosco. Velut quae subiungo eaque tondeo.
Overview
podcasts / #3
Host: Dr. Mona Dickens
Contabesco officia agnosco. Velut quae subiungo eaque tondeo.
Fritsch LLC Podcast
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcasts/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcasts/3" ); 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/3"
);
const podcast = (await res.json()) as Podcast; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcasts/3"
)
podcast = res.json() Response
{
"id": 3,
"name": "Fritsch LLC Podcast",
"slug": "fritsch-llc-podcast-3",
"description": "Contabesco officia agnosco. Velut quae subiungo eaque tondeo.",
"hostName": "Dr. Mona Dickens",
"category": "education",
"language": "Korean",
"coverUrl": "https://picsum.photos/seed/podcast-3/500/500",
"episodeCount": 195,
"isExplicit": false,
"createdAt": "2025-10-31T17:32:10.858Z",
"updatedAt": "2025-11-04T13:03:43.293Z"
}