Voveo administratio brevis utrum demoror
1998
fantasy
★ 9.4 (165782)
tv-shows / #64
1998
★ 9.4 (165782)
curl -sS \
"https://example-data.com/api/v1/tv-shows/64" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/64"
);
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/64"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/64"
)
tv_show = res.json() {
"id": 64,
"title": "Voveo administratio brevis utrum demoror",
"slug": "voveo-administratio-brevis-utrum-demoror-64",
"firstAired": "1998-01-31",
"lastAired": "2015-03-04",
"seasonCount": 5,
"episodeCount": 43,
"genres": [
"fantasy"
],
"language": "Spanish",
"posterUrl": "https://picsum.photos/seed/tvshow-64/400/600",
"rating": 9.4,
"ratingCount": 165782,
"status": "ended",
"createdAt": "2025-09-04T02:25:14.801Z"
}