Commodo cometes torqueo abduco terebro
2014
animationhorrorscience-fiction
★ 7.2 (455677)
tv-shows / #36
2014
★ 7.2 (455677)
curl -sS \
"https://example-data.com/api/v1/tv-shows/36" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/36"
);
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/36"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/36"
)
tv_show = res.json() {
"id": 36,
"title": "Commodo cometes torqueo abduco terebro",
"slug": "commodo-cometes-torqueo-abduco-terebro-36",
"firstAired": "2014-03-19",
"lastAired": "2021-09-27",
"seasonCount": 8,
"episodeCount": 100,
"genres": [
"animation",
"horror",
"science-fiction"
],
"language": "Spanish",
"posterUrl": "https://picsum.photos/seed/tvshow-36/400/600",
"rating": 7.2,
"ratingCount": 455677,
"status": "ended",
"createdAt": "2026-03-04T17:26:49.685Z"
}