Assumenda libero vix caste
1996
actionthrilleranimation
★ 1.5 (422763)
tv-shows / #35
1996
★ 1.5 (422763)
curl -sS \
"https://example-data.com/api/v1/tv-shows/35" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/35"
);
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/35"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/35"
)
tv_show = res.json() {
"id": 35,
"title": "Assumenda libero vix caste",
"slug": "assumenda-libero-vix-caste-35",
"firstAired": "1996-10-24",
"lastAired": "2009-07-22",
"seasonCount": 7,
"episodeCount": 114,
"genres": [
"action",
"thriller",
"animation"
],
"language": "French",
"posterUrl": "https://picsum.photos/seed/tvshow-35/400/600",
"rating": 1.5,
"ratingCount": 422763,
"status": "ended",
"createdAt": "2026-04-06T13:14:06.309Z"
}