Spiritus sophismata
2022
horroranimation
★ 9.0 (198904)
Overview
tv-shows / #75
2022
★ 9.0 (198904)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/75" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/75" ); 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/75"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/75"
)
tv_show = res.json() Response
{
"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"
}