Bis blandior averto compello
2026
adventure
★ 4.5 (222700)
Overview
tv-shows / #66
2026
★ 4.5 (222700)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/66" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/66" ); 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/66"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/66"
)
tv_show = res.json() Response
{
"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"
}