Damno timor varietas solus sulum
1997
comedy
★ 0.0 (137909)
tv-shows / #12
1997
★ 0.0 (137909)
curl -sS \
"https://example-data.com/api/v1/tv-shows/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/12"
);
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/12"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/12"
)
tv_show = res.json() {
"id": 12,
"title": "Damno timor varietas solus sulum",
"slug": "damno-timor-varietas-solus-sulum-12",
"firstAired": "1997-07-22",
"lastAired": "2000-09-30",
"seasonCount": 5,
"episodeCount": 102,
"genres": [
"comedy"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-12/400/600",
"rating": 0,
"ratingCount": 137909,
"status": "ended",
"createdAt": "2025-08-30T01:34:58.890Z"
}