example-data.com
Menu
Browse docs and collections

Overview

podcasts / #9

Crist - Bartell Podcast

Crist - Bartell Podcast

Host: Suzanne Lockman PhD

Tego recusandae temptatio odio cervus. Vobis curvo thesis deprimo balbus supellex cariosus umbra. Inflammatio attonbitus desipio vulnero canonicus catena labore nemo super decumbo.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/podcasts/9" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/podcasts/9"
);
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/9"
);
const podcast = (await res.json()) as Podcast;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/podcasts/9"
)
podcast = res.json()

Response

{
  "id": 9,
  "name": "Crist - Bartell Podcast",
  "slug": "crist---bartell-podcast-9",
  "description": "Tego recusandae temptatio odio cervus. Vobis curvo thesis deprimo balbus supellex cariosus umbra. Inflammatio attonbitus desipio vulnero canonicus catena labore nemo super decumbo.",
  "hostName": "Suzanne Lockman PhD",
  "category": "tech",
  "language": "Japanese",
  "coverUrl": "https://picsum.photos/seed/podcast-9/500/500",
  "episodeCount": 86,
  "isExplicit": false,
  "createdAt": "2021-09-02T18:31:36.865Z",
  "updatedAt": "2021-09-23T00:20:15.317Z"
}