Aqua vitae quam acquiro repudiandae
2016
mysteryactionreality
★ 6.7 (197993)
tv-shows / #56
2016
★ 6.7 (197993)
curl -sS \
"https://example-data.com/api/v1/tv-shows/56" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/56"
);
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/56"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/56"
)
tv_show = res.json() {
"id": 56,
"title": "Aqua vitae quam acquiro repudiandae",
"slug": "aqua-vitae-quam-acquiro-repudiandae-56",
"firstAired": "2016-08-27",
"lastAired": "2017-07-22",
"seasonCount": 14,
"episodeCount": 132,
"genres": [
"mystery",
"action",
"reality"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-56/400/600",
"rating": 6.7,
"ratingCount": 197993,
"status": "cancelled",
"createdAt": "2023-12-27T00:33:56.509Z"
}