example-data.com
Menu
Browse docs and collections

Overview

tv-shows / #76

Statim curis repellat vallum stillicidium

Statim curis repellat vallum stillicidium

2016

animation

★ 4.1 (487074)

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 76,
  "title": "Statim curis repellat vallum stillicidium",
  "slug": "statim-curis-repellat-vallum-stillicidium-76",
  "firstAired": "2016-05-01",
  "lastAired": "2021-07-25",
  "seasonCount": 2,
  "episodeCount": 31,
  "genres": [
    "animation"
  ],
  "language": "Portuguese",
  "posterUrl": "https://picsum.photos/seed/tvshow-76/400/600",
  "rating": 4.1,
  "ratingCount": 487074,
  "status": "cancelled",
  "createdAt": "2026-02-26T18:02:52.928Z"
}