Compono armarium
2022
crime
★ 4.9 (392180)
Overview
tv-shows / #50
2022
★ 4.9 (392180)
Compono armarium
2022
★ 4.9
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/50" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/50" ); 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/50"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/50"
)
tv_show = res.json() Response
{
"id": 50,
"title": "Compono armarium",
"slug": "compono-armarium-50",
"firstAired": "2022-01-07",
"lastAired": "2023-06-29",
"seasonCount": 11,
"episodeCount": 18,
"genres": [
"crime"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-50/400/600",
"rating": 4.9,
"ratingCount": 392180,
"status": "ended",
"createdAt": "2026-03-27T03:21:20.053Z"
}