Statim curis repellat vallum stillicidium
2016
animation
★ 4.1 (487074)
tv-shows / #76
2016
★ 4.1 (487074)
curl -sS \
"https://example-data.com/api/v1/tv-shows/76" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/76"
);
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/76"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/76"
)
tv_show = res.json() {
"id": 76,
"title": "Statim curis repellat vallum stillicidium",
"slug": "statim-curis-repellat-vallum-stillicidium-76",
"firstAired": "2016-05-01",
"lastAired": "2021-07-25",
"seasonCount": 2,
"episodeCount": 31,
"genres": [
"animation"
],
"language": "Portuguese",
"posterUrl": "https://picsum.photos/seed/tvshow-76/400/600",
"rating": 4.1,
"ratingCount": 487074,
"status": "cancelled",
"createdAt": "2026-02-26T18:02:52.928Z"
}