Voluntarius commodo
2016
documentary
★ 8.4 (18542)
tv-shows / #65
2016
★ 8.4 (18542)
curl -sS \
"https://example-data.com/api/v1/tv-shows/65" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/65"
);
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/65"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/65"
)
tv_show = res.json() {
"id": 65,
"title": "Voluntarius commodo",
"slug": "voluntarius-commodo-65",
"firstAired": "2016-03-27",
"lastAired": "2022-06-21",
"seasonCount": 8,
"episodeCount": 156,
"genres": [
"documentary"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-65/400/600",
"rating": 8.4,
"ratingCount": 18542,
"status": "ended",
"createdAt": "2025-07-11T02:05:37.794Z"
}