Vitiosus aegrotatio barba universe sodalitas
2007
horror
★ 2.0 (121112)
tv-shows / #19
2007
★ 2.0 (121112)
curl -sS \
"https://example-data.com/api/v1/tv-shows/19" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/19"
);
const tvShow = await res.json();import type { TvShow } from "https://example-data.com/types/tv-shows.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/tv-shows/19"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/19"
)
tv_show = res.json() {
"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"
}