Damno timor varietas solus sulum
1997
comedy
★ 0.0 (137909)
Overview
tv-shows / #12
1997
★ 0.0 (137909)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/12" ); 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/12"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/12"
)
tv_show = res.json() Response
{
"id": 12,
"title": "Damno timor varietas solus sulum",
"slug": "damno-timor-varietas-solus-sulum-12",
"firstAired": "1997-07-22",
"lastAired": "2000-09-30",
"seasonCount": 5,
"episodeCount": 102,
"genres": [
"comedy"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-12/400/600",
"rating": 0,
"ratingCount": 137909,
"status": "ended",
"createdAt": "2025-08-30T01:34:58.890Z"
}