Ex temptatio commodi
2018
realityadventure
★ 9.7 (397073)
Overview
tv-shows / #96
2018
★ 9.7 (397073)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/96" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/96" ); const tvShow = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tv-shows.d.ts https://example-data.com/types/tv-shows.d.ts
import type { TvShow } from "./types/tv-shows";
const res = await fetch(
"https://example-data.com/api/v1/tv-shows/96"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/96"
)
tv_show = res.json() Response
{
"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"
}