example-data.com

podcasts / #26

Abernathy - Stokes Podcast

Abernathy - Stokes Podcast

Host: Kayla Schumm-Greenholt

Velociter accendo desidero cognatus aeternus. Totidem aut substantia ancilla turbo theologus tondeo statua.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/podcasts/26" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/podcasts/26"
);
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/26"
);
const podcast = (await res.json()) as Podcast;
import requests

res = requests.get(
    "https://example-data.com/api/v1/podcasts/26"
)
podcast = res.json()
{
  "id": 26,
  "name": "Abernathy - Stokes Podcast",
  "slug": "abernathy---stokes-podcast-26",
  "description": "Velociter accendo desidero cognatus aeternus. Totidem aut substantia ancilla turbo theologus tondeo statua.",
  "hostName": "Kayla Schumm-Greenholt",
  "category": "sports",
  "language": "German",
  "coverUrl": "https://picsum.photos/seed/podcast-26/500/500",
  "episodeCount": 161,
  "isExplicit": false,
  "createdAt": "2025-03-27T03:43:04.204Z",
  "updatedAt": "2025-03-28T05:02:14.739Z"
}
Draftbit