Laborum aliquid anser quod excepturi
1998
drama
★ 8.6 (475392)
tv-shows / #90
1998
★ 8.6 (475392)
curl -sS \
"https://example-data.com/api/v1/tv-shows/90" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/90"
);
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/90"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/90"
)
tv_show = res.json() {
"id": 90,
"title": "Laborum aliquid anser quod excepturi",
"slug": "laborum-aliquid-anser-quod-excepturi-90",
"firstAired": "1998-12-18",
"lastAired": null,
"seasonCount": 4,
"episodeCount": 48,
"genres": [
"drama"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-90/400/600",
"rating": 8.6,
"ratingCount": 475392,
"status": "running",
"createdAt": "2025-04-28T05:42:33.626Z"
}