example-data.com

tv-shows / #33

Animi quae depono

Animi quae depono

2018

science-fictioncomedycrime

★ 2.8 (223268)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/33"
)
tv_show = res.json()
{
  "id": 33,
  "title": "Animi quae depono",
  "slug": "animi-quae-depono-33",
  "firstAired": "2018-05-20",
  "lastAired": "2026-03-23",
  "seasonCount": 2,
  "episodeCount": 40,
  "genres": [
    "science-fiction",
    "comedy",
    "crime"
  ],
  "language": "Japanese",
  "posterUrl": "https://picsum.photos/seed/tvshow-33/400/600",
  "rating": 2.8,
  "ratingCount": 223268,
  "status": "ended",
  "createdAt": "2024-07-16T17:40:24.453Z"
}
Draftbit