example-data.com

tv-shows / #50

Compono armarium

Compono armarium

2022

crime

★ 4.9 (392180)

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/tv-shows/50" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/50"
);
const tvShow = await res.json();
import type { TvShow } from "https://example-data.com/types/tv-shows.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/50"
);
const tvShow = (await res.json()) as TvShow;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/50"
)
tv_show = res.json()
{
  "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"
}
Draftbit