example-data.com

podcasts / #30

Dach, Roberts and Bernier Podcast

Dach, Roberts and Bernier Podcast

Host: Miriam Rau

Correptius similique accedo temperantia sub concido. Aperte sit repellendus beatae velut curto ager.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/podcasts/30"
)
podcast = res.json()
{
  "id": 30,
  "name": "Dach, Roberts and Bernier Podcast",
  "slug": "dach-roberts-and-bernier-podcast-30",
  "description": "Correptius similique accedo temperantia sub concido. Aperte sit repellendus beatae velut curto ager.",
  "hostName": "Miriam Rau",
  "category": "business",
  "language": "Spanish",
  "coverUrl": "https://picsum.photos/seed/podcast-30/500/500",
  "episodeCount": 20,
  "isExplicit": false,
  "createdAt": "2024-07-16T17:43:37.167Z",
  "updatedAt": "2024-08-06T17:55:25.548Z"
}
Draftbit