Laborum aliquid anser quod excepturi
1998
drama
★ 8.6 (475392)
Overview
tv-shows / #90
1998
★ 8.6 (475392)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/90" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/90" ); 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/90"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/90"
)
tv_show = res.json() Response
{
"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"
}