example-data.com

tv-shows / #85

Casus assumenda via xiphias

Casus assumenda via xiphias

2013

horrorfantasyanimation

★ 4.0 (199577)

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/tv-shows/85" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tv-shows/85"
);
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/85"
);
const tvShow = (await res.json()) as TvShow;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/85"
)
tv_show = res.json()
{
  "id": 85,
  "title": "Casus assumenda via xiphias",
  "slug": "casus-assumenda-via-xiphias-85",
  "firstAired": "2013-06-12",
  "lastAired": "2026-02-24",
  "seasonCount": 11,
  "episodeCount": 212,
  "genres": [
    "horror",
    "fantasy",
    "animation"
  ],
  "language": "German",
  "posterUrl": "https://picsum.photos/seed/tvshow-85/400/600",
  "rating": 4,
  "ratingCount": 199577,
  "status": "ended",
  "createdAt": "2024-07-12T02:12:34.183Z"
}
Draftbit