Statim curis repellat vallum stillicidium
2016
animation
★ 4.1 (487074)
Overview
tv-shows / #76
2016
★ 4.1 (487074)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/76" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/76" ); 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/76"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/76"
)
tv_show = res.json() Response
{
"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"
}