Hills, Smith and Rempel Podcast
Host: Merle Price
Voluptates conduco compello. Abduco clam voluptas creptio textor carbo casso spectaculum arbustum claudeo. Synagoga adeptio antiquus astrum amor caveo.
Overview
podcasts / #16
Host: Merle Price
Voluptates conduco compello. Abduco clam voluptas creptio textor carbo casso spectaculum arbustum claudeo. Synagoga adeptio antiquus astrum amor caveo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/podcasts/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/podcasts/16" ); 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/16"
);
const podcast = (await res.json()) as Podcast; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/podcasts/16"
)
podcast = res.json() Response
{
"id": 16,
"name": "Hills, Smith and Rempel Podcast",
"slug": "hills-smith-and-rempel-podcast-16",
"description": "Voluptates conduco compello. Abduco clam voluptas creptio textor carbo casso spectaculum arbustum claudeo. Synagoga adeptio antiquus astrum amor caveo.",
"hostName": "Merle Price",
"category": "news",
"language": "Portuguese",
"coverUrl": "https://picsum.photos/seed/podcast-16/500/500",
"episodeCount": 173,
"isExplicit": false,
"createdAt": "2024-06-07T07:20:15.874Z",
"updatedAt": "2024-07-03T23:13:13.580Z"
}