Ascisco iure casso tergeo
2016
thrillermystery
★ 6.8 (70848)
tv-shows / #52
2016
★ 6.8 (70848)
curl -sS \
"https://example-data.com/api/v1/tv-shows/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/52"
);
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/52"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/52"
)
tv_show = res.json() {
"id": 52,
"title": "Ascisco iure casso tergeo",
"slug": "ascisco-iure-casso-tergeo-52",
"firstAired": "2016-12-15",
"lastAired": "2020-03-02",
"seasonCount": 9,
"episodeCount": 85,
"genres": [
"thriller",
"mystery"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-52/400/600",
"rating": 6.8,
"ratingCount": 70848,
"status": "ended",
"createdAt": "2024-08-28T01:23:35.476Z"
}