example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #19

Vitiosus aegrotatio barba universe sodalitas

Vitiosus aegrotatio barba universe sodalitas

2007

horror

★ 2.0 (121112)

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/tv-shows/19" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/19"
);
const tvShow = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/tv-shows.d.ts https://example-data.com/types/tv-shows.d.ts
import type { TvShow } from "./types/tv-shows";

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/19"
);
const tvShow = (await res.json()) as TvShow;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/19"
)
tv_show = res.json()

Response

{
  "id": 19,
  "title": "Vitiosus aegrotatio barba universe sodalitas",
  "slug": "vitiosus-aegrotatio-barba-universe-sodalitas-19",
  "firstAired": "2007-03-15",
  "lastAired": "2026-01-25",
  "seasonCount": 7,
  "episodeCount": 154,
  "genres": [
    "horror"
  ],
  "language": "German",
  "posterUrl": "https://picsum.photos/seed/tvshow-19/400/600",
  "rating": 2,
  "ratingCount": 121112,
  "status": "ended",
  "createdAt": "2023-09-12T17:56:48.811Z"
}