Annus viduo
2002
realityanimation
★ 3.0 (142190)
tv-shows / #55
2002
★ 3.0 (142190)
Annus viduo
2002
★ 3.0
curl -sS \
"https://example-data.com/api/v1/tv-shows/55" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/55"
);
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/55"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/55"
)
tv_show = res.json() {
"id": 55,
"title": "Annus viduo",
"slug": "annus-viduo-55",
"firstAired": "2002-11-25",
"lastAired": "2009-03-25",
"seasonCount": 1,
"episodeCount": 9,
"genres": [
"reality",
"animation"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-55/400/600",
"rating": 3,
"ratingCount": 142190,
"status": "ended",
"createdAt": "2025-03-14T23:36:44.859Z"
}