Magnam aegrus auditor sodalitas
2019
action
★ 2.7 (220721)
Overview
tv-shows / #32
2019
★ 2.7 (220721)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/32" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/32" ); 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/32"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/32"
)
tv_show = res.json() Response
{
"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"
}