Canto volubilis tabula
2003
thriller
★ 4.9 (329942)
tv-shows / #68
2003
★ 4.9 (329942)
curl -sS \
"https://example-data.com/api/v1/tv-shows/68" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/68"
);
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/68"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/68"
)
tv_show = res.json() {
"id": 68,
"title": "Canto volubilis tabula",
"slug": "canto-volubilis-tabula-68",
"firstAired": "2003-06-17",
"lastAired": null,
"seasonCount": 3,
"episodeCount": 32,
"genres": [
"thriller"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-68/400/600",
"rating": 4.9,
"ratingCount": 329942,
"status": "upcoming",
"createdAt": "2026-02-27T10:56:29.289Z"
}