Supra vacuus audacia pauper neque
2002
actionhorrorreality
★ 9.1 (386281)
tv-shows / #16
2002
★ 9.1 (386281)
curl -sS \
"https://example-data.com/api/v1/tv-shows/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/16"
);
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/16"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/16"
)
tv_show = res.json() {
"id": 16,
"title": "Supra vacuus audacia pauper neque",
"slug": "supra-vacuus-audacia-pauper-neque-16",
"firstAired": "2002-10-16",
"lastAired": "2016-07-05",
"seasonCount": 5,
"episodeCount": 9,
"genres": [
"action",
"horror",
"reality"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-16/400/600",
"rating": 9.1,
"ratingCount": 386281,
"status": "ended",
"createdAt": "2025-09-03T07:30:51.924Z"
}