Agnosco terror curso adeptio vulticulus
2009
science-fiction
★ 6.6 (342215)
Overview
tv-shows / #11
2009
★ 6.6 (342215)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/11" ); 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/11"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/11"
)
tv_show = res.json() Response
{
"id": 11,
"title": "Agnosco terror curso adeptio vulticulus",
"slug": "agnosco-terror-curso-adeptio-vulticulus-11",
"firstAired": "2009-08-13",
"lastAired": "2016-07-12",
"seasonCount": 13,
"episodeCount": 241,
"genres": [
"science-fiction"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-11/400/600",
"rating": 6.6,
"ratingCount": 342215,
"status": "ended",
"createdAt": "2025-09-13T02:17:27.557Z"
}