example-data.com

tv-shows / #70

Tollo attero

Tollo attero

2018

dramathriller

★ 4.6 (18290)

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tv-shows/70"
)
tv_show = res.json()
{
  "id": 70,
  "title": "Tollo attero",
  "slug": "tollo-attero-70",
  "firstAired": "2018-01-22",
  "lastAired": "2022-04-08",
  "seasonCount": 8,
  "episodeCount": 27,
  "genres": [
    "drama",
    "thriller"
  ],
  "language": "French",
  "posterUrl": "https://picsum.photos/seed/tvshow-70/400/600",
  "rating": 4.6,
  "ratingCount": 18290,
  "status": "ended",
  "createdAt": "2024-02-02T16:18:30.315Z"
}
Draftbit