Annus viduo
2002
realityanimation
★ 3.0 (142190)
Overview
tv-shows / #55
2002
★ 3.0 (142190)
Annus viduo
2002
★ 3.0
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/55" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/55" ); 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/55"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/55"
)
tv_show = res.json() Response
{
"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"
}