Agnosco terror curso adeptio vulticulus
2009
science-fiction
★ 6.6 (342215)
tv-shows / #11
2009
★ 6.6 (342215)
curl -sS \
"https://example-data.com/api/v1/tv-shows/11" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/11"
);
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/11"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/11"
)
tv_show = res.json() {
"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"
}