Sortitus totus ager cervus
2023
animationcrime
★ 1.7 (437413)
tv-shows / #91
2023
★ 1.7 (437413)
curl -sS \
"https://example-data.com/api/v1/tv-shows/91" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/91"
);
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/91"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/91"
)
tv_show = res.json() {
"id": 91,
"title": "Sortitus totus ager cervus",
"slug": "sortitus-totus-ager-cervus-91",
"firstAired": "2023-03-05",
"lastAired": "2024-11-13",
"seasonCount": 12,
"episodeCount": 136,
"genres": [
"animation",
"crime"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-91/400/600",
"rating": 1.7,
"ratingCount": 437413,
"status": "cancelled",
"createdAt": "2025-06-04T22:37:56.853Z"
}