Capto absconditus videlicet a
2012
romancereality
★ 1.3 (373994)
Overview
tv-shows / #81
2012
★ 1.3 (373994)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/81" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/81" ); 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/81"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/81"
)
tv_show = res.json() Response
{
"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"
}