Canto volubilis tabula
2003
thriller
★ 4.9 (329942)
Overview
tv-shows / #68
2003
★ 4.9 (329942)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/68" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/68" ); 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/68"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/68"
)
tv_show = res.json() Response
{
"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"
}