Benevolentia tamdiu cariosus nulla autem
2000
thrillerdrama
★ 9.9 (54789)
tv-shows / #80
2000
★ 9.9 (54789)
curl -sS \
"https://example-data.com/api/v1/tv-shows/80" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/80"
);
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/80"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/80"
)
tv_show = res.json() {
"id": 80,
"title": "Benevolentia tamdiu cariosus nulla autem",
"slug": "benevolentia-tamdiu-cariosus-nulla-autem-80",
"firstAired": "2000-10-11",
"lastAired": null,
"seasonCount": 9,
"episodeCount": 208,
"genres": [
"thriller",
"drama"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-80/400/600",
"rating": 9.9,
"ratingCount": 54789,
"status": "running",
"createdAt": "2026-05-17T08:06:20.527Z"
}