Spiritus sophismata
2022
horroranimation
★ 9.0 (198904)
tv-shows / #75
2022
★ 9.0 (198904)
curl -sS \
"https://example-data.com/api/v1/tv-shows/75" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/75"
);
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/75"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/75"
)
tv_show = res.json() {
"id": 75,
"title": "Spiritus sophismata",
"slug": "spiritus-sophismata-75",
"firstAired": "2022-11-29",
"lastAired": "2025-07-01",
"seasonCount": 11,
"episodeCount": 245,
"genres": [
"horror",
"animation"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-75/400/600",
"rating": 9,
"ratingCount": 198904,
"status": "ended",
"createdAt": "2023-06-23T20:30:11.652Z"
}