Contabesco vulticulus terreo appositus aufero
2026
animationfantasy
★ 6.8 (10933)
Overview
tv-shows / #38
2026
★ 6.8 (10933)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/38" ); 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/38"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/38"
)
tv_show = res.json() Response
{
"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"
}