Capto absconditus videlicet a
2012
romancereality
★ 1.3 (373994)
tv-shows / #81
2012
★ 1.3 (373994)
curl -sS \
"https://example-data.com/api/v1/tv-shows/81" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/81"
);
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/81"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/81"
)
tv_show = res.json() {
"id": 81,
"title": "Capto absconditus videlicet a",
"slug": "capto-absconditus-videlicet-a-81",
"firstAired": "2012-10-20",
"lastAired": null,
"seasonCount": 8,
"episodeCount": 183,
"genres": [
"romance",
"reality"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-81/400/600",
"rating": 1.3,
"ratingCount": 373994,
"status": "running",
"createdAt": "2026-02-28T14:57:41.416Z"
}