At aro angustus temperantia caute
2016
comedy
★ 5.1 (410237)
tv-shows / #17
2016
★ 5.1 (410237)
curl -sS \
"https://example-data.com/api/v1/tv-shows/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/17"
);
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/17"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/17"
)
tv_show = res.json() {
"id": 17,
"title": "At aro angustus temperantia caute",
"slug": "at-aro-angustus-temperantia-caute-17",
"firstAired": "2016-06-20",
"lastAired": null,
"seasonCount": 5,
"episodeCount": 86,
"genres": [
"comedy"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-17/400/600",
"rating": 5.1,
"ratingCount": 410237,
"status": "running",
"createdAt": "2024-09-21T13:18:40.412Z"
}