Bis blandior averto compello
2026
adventure
★ 4.5 (222700)
tv-shows / #66
2026
★ 4.5 (222700)
curl -sS \
"https://example-data.com/api/v1/tv-shows/66" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/66"
);
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/66"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/66"
)
tv_show = res.json() {
"id": 66,
"title": "Bis blandior averto compello",
"slug": "bis-blandior-averto-compello-66",
"firstAired": "2026-03-09",
"lastAired": "2026-05-21",
"seasonCount": 14,
"episodeCount": 138,
"genres": [
"adventure"
],
"language": "Mandarin",
"posterUrl": "https://picsum.photos/seed/tvshow-66/400/600",
"rating": 4.5,
"ratingCount": 222700,
"status": "cancelled",
"createdAt": "2025-08-21T21:32:58.722Z"
}