Commodo cometes torqueo abduco terebro
2014
animationhorrorscience-fiction
★ 7.2 (455677)
Overview
tv-shows / #36
2014
★ 7.2 (455677)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/36" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/36" ); 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/36"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/36"
)
tv_show = res.json() Response
{
"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"
}