Voco vinitor
1999
science-fiction
★ 9.1 (373242)
Overview
tv-shows / #84
1999
★ 9.1 (373242)
Voco vinitor
1999
★ 9.1
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/84" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/84" ); 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/84"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/84"
)
tv_show = res.json() Response
{
"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"
}