Advoco ipsam tondeo
1997
horroranimation
★ 6.2 (289481)
tv-shows / #20
1997
★ 6.2 (289481)
curl -sS \
"https://example-data.com/api/v1/tv-shows/20" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/20"
);
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/20"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/20"
)
tv_show = res.json() {
"id": 20,
"title": "Advoco ipsam tondeo",
"slug": "advoco-ipsam-tondeo-20",
"firstAired": "1997-04-15",
"lastAired": null,
"seasonCount": 11,
"episodeCount": 21,
"genres": [
"horror",
"animation"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-20/400/600",
"rating": 6.2,
"ratingCount": 289481,
"status": "running",
"createdAt": "2025-10-31T23:07:12.898Z"
}