example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #91

Sortitus totus ager cervus

Sortitus totus ager cervus

2023

animationcrime

★ 1.7 (437413)

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 91,
  "title": "Sortitus totus ager cervus",
  "slug": "sortitus-totus-ager-cervus-91",
  "firstAired": "2023-03-05",
  "lastAired": "2024-11-13",
  "seasonCount": 12,
  "episodeCount": 136,
  "genres": [
    "animation",
    "crime"
  ],
  "language": "German",
  "posterUrl": "https://picsum.photos/seed/tvshow-91/400/600",
  "rating": 1.7,
  "ratingCount": 437413,
  "status": "cancelled",
  "createdAt": "2025-06-04T22:37:56.853Z"
}