Crepusculum quibusdam villa vindico
2012
thrillercrimereality
★ 6.1 (443873)
Overview
tv-shows / #46
2012
★ 6.1 (443873)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/46" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/46" ); 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/46"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/46"
)
tv_show = res.json() Response
{
"id": 46,
"title": "Crepusculum quibusdam villa vindico",
"slug": "crepusculum-quibusdam-villa-vindico-46",
"firstAired": "2012-11-02",
"lastAired": null,
"seasonCount": 5,
"episodeCount": 105,
"genres": [
"thriller",
"crime",
"reality"
],
"language": "French",
"posterUrl": "https://picsum.photos/seed/tvshow-46/400/600",
"rating": 6.1,
"ratingCount": 443873,
"status": "running",
"createdAt": "2025-02-19T12:14:22.325Z"
}