Ex temptatio commodi
2018
realityadventure
★ 9.7 (397073)
tv-shows / #96
2018
★ 9.7 (397073)
curl -sS \
"https://example-data.com/api/v1/tv-shows/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/96"
);
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/96"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/96"
)
tv_show = res.json() {
"id": 96,
"title": "Ex temptatio commodi",
"slug": "ex-temptatio-commodi-96",
"firstAired": "2018-04-20",
"lastAired": null,
"seasonCount": 13,
"episodeCount": 111,
"genres": [
"reality",
"adventure"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-96/400/600",
"rating": 9.7,
"ratingCount": 397073,
"status": "running",
"createdAt": "2026-03-30T11:13:54.712Z"
}