example-data.com

podcasts / #16

Hills, Smith and Rempel Podcast

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.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/podcasts/16" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/podcasts/16"
);
const podcast = await res.json();
import type { Podcast } from "https://example-data.com/types/podcasts.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/podcasts/16"
);
const podcast = (await res.json()) as Podcast;
import requests

res = requests.get(
    "https://example-data.com/api/v1/podcasts/16"
)
podcast = res.json()
{
  "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"
}
Draftbit