Contabesco vulticulus terreo appositus aufero
2026
animationfantasy
★ 6.8 (10933)
tv-shows / #38
2026
★ 6.8 (10933)
curl -sS \
"https://example-data.com/api/v1/tv-shows/38" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/38"
);
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/38"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/38"
)
tv_show = res.json() {
"id": 38,
"title": "Contabesco vulticulus terreo appositus aufero",
"slug": "contabesco-vulticulus-terreo-appositus-aufero-38",
"firstAired": "2026-01-03",
"lastAired": "2026-04-12",
"seasonCount": 9,
"episodeCount": 158,
"genres": [
"animation",
"fantasy"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-38/400/600",
"rating": 6.8,
"ratingCount": 10933,
"status": "ended",
"createdAt": "2023-10-29T08:01:27.889Z"
}