example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #33

Animi quae depono

Animi quae depono

2018

science-fictioncomedycrime

★ 2.8 (223268)

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/tv-shows/33" \
  -H "Accept: application/json"

JavaScript example

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/33"
)
tv_show = res.json()

Response

{
  "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"
}