Damno eum suus delectus quisquam
2021
animationrealitycrime
★ 0.1 (92437)
Overview
tv-shows / #89
2021
★ 0.1 (92437)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/89" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/89" ); 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/89"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/89"
)
tv_show = res.json() Response
{
"id": 89,
"title": "Damno eum suus delectus quisquam",
"slug": "damno-eum-suus-delectus-quisquam-89",
"firstAired": "2021-10-13",
"lastAired": "2023-02-11",
"seasonCount": 12,
"episodeCount": 23,
"genres": [
"animation",
"reality",
"crime"
],
"language": "Spanish",
"posterUrl": "https://picsum.photos/seed/tvshow-89/400/600",
"rating": 0.1,
"ratingCount": 92437,
"status": "ended",
"createdAt": "2025-03-12T23:45:39.024Z"
}