Supra vacuus audacia pauper neque
2002
actionhorrorreality
★ 9.1 (386281)
Overview
tv-shows / #16
2002
★ 9.1 (386281)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/16" ); 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/16"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/16"
)
tv_show = res.json() Response
{
"id": 16,
"title": "Supra vacuus audacia pauper neque",
"slug": "supra-vacuus-audacia-pauper-neque-16",
"firstAired": "2002-10-16",
"lastAired": "2016-07-05",
"seasonCount": 5,
"episodeCount": 9,
"genres": [
"action",
"horror",
"reality"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-16/400/600",
"rating": 9.1,
"ratingCount": 386281,
"status": "ended",
"createdAt": "2025-09-03T07:30:51.924Z"
}