Casus assumenda via xiphias
2013
horrorfantasyanimation
★ 4.0 (199577)
tv-shows / #85
2013
★ 4.0 (199577)
curl -sS \
"https://example-data.com/api/v1/tv-shows/85" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/85"
);
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/85"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/85"
)
tv_show = res.json() {
"id": 85,
"title": "Casus assumenda via xiphias",
"slug": "casus-assumenda-via-xiphias-85",
"firstAired": "2013-06-12",
"lastAired": "2026-02-24",
"seasonCount": 11,
"episodeCount": 212,
"genres": [
"horror",
"fantasy",
"animation"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-85/400/600",
"rating": 4,
"ratingCount": 199577,
"status": "ended",
"createdAt": "2024-07-12T02:12:34.183Z"
}