Assumenda libero vix caste
1996
actionthrilleranimation
★ 1.5 (422763)
Overview
tv-shows / #35
1996
★ 1.5 (422763)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/35" ); 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/35"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/35"
)
tv_show = res.json() Response
{
"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"
}