Magnam aegrus auditor sodalitas
2019
action
★ 2.7 (220721)
tv-shows / #32
2019
★ 2.7 (220721)
curl -sS \
"https://example-data.com/api/v1/tv-shows/32" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/32"
);
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/32"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/32"
)
tv_show = res.json() {
"id": 32,
"title": "Magnam aegrus auditor sodalitas",
"slug": "magnam-aegrus-auditor-sodalitas-32",
"firstAired": "2019-09-07",
"lastAired": "2021-09-19",
"seasonCount": 12,
"episodeCount": 170,
"genres": [
"action"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-32/400/600",
"rating": 2.7,
"ratingCount": 220721,
"status": "ended",
"createdAt": "2025-10-31T20:20:34.824Z"
}