Voco vinitor
1999
science-fiction
★ 9.1 (373242)
tv-shows / #84
1999
★ 9.1 (373242)
Voco vinitor
1999
★ 9.1
curl -sS \
"https://example-data.com/api/v1/tv-shows/84" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/84"
);
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/84"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/84"
)
tv_show = res.json() {
"id": 84,
"title": "Voco vinitor",
"slug": "voco-vinitor-84",
"firstAired": "1999-10-08",
"lastAired": "2014-02-26",
"seasonCount": 3,
"episodeCount": 23,
"genres": [
"science-fiction"
],
"language": "Portuguese",
"posterUrl": "https://picsum.photos/seed/tvshow-84/400/600",
"rating": 9.1,
"ratingCount": 373242,
"status": "ended",
"createdAt": "2025-11-17T16:11:49.969Z"
}