Stillicidium vilis claustrum odio volutabrum
2017
adventuredocumentarymystery
★ 9.1 (369132)
Overview
tv-shows / #95
2017
★ 9.1 (369132)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/95" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/95" ); 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/95"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/95"
)
tv_show = res.json() Response
{
"id": 95,
"title": "Stillicidium vilis claustrum odio volutabrum",
"slug": "stillicidium-vilis-claustrum-odio-volutabrum-95",
"firstAired": "2017-08-31",
"lastAired": null,
"seasonCount": 11,
"episodeCount": 258,
"genres": [
"adventure",
"documentary",
"mystery"
],
"language": "Spanish",
"posterUrl": "https://picsum.photos/seed/tvshow-95/400/600",
"rating": 9.1,
"ratingCount": 369132,
"status": "running",
"createdAt": "2024-03-15T13:24:04.831Z"
}