Illum theatrum
1997
documentary
★ 10.0 (225460)
tv-shows / #93
1997
★ 10.0 (225460)
Illum theatrum
1997
★ 10.0
curl -sS \
"https://example-data.com/api/v1/tv-shows/93" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/93"
);
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/93"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/93"
)
tv_show = res.json() {
"id": 93,
"title": "Illum theatrum",
"slug": "illum-theatrum-93",
"firstAired": "1997-08-22",
"lastAired": "1998-05-25",
"seasonCount": 12,
"episodeCount": 181,
"genres": [
"documentary"
],
"language": "Mandarin",
"posterUrl": "https://picsum.photos/seed/tvshow-93/400/600",
"rating": 10,
"ratingCount": 225460,
"status": "ended",
"createdAt": "2024-04-02T03:06:24.920Z"
}