Odio umerus verumtamen
2012
animationfantasy
★ 5.8 (309727)
tv-shows / #10
2012
★ 5.8 (309727)
curl -sS \
"https://example-data.com/api/v1/tv-shows/10" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/10"
);
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/10"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/10"
)
tv_show = res.json() {
"id": 10,
"title": "Odio umerus verumtamen",
"slug": "odio-umerus-verumtamen-10",
"firstAired": "2012-04-27",
"lastAired": "2019-05-09",
"seasonCount": 6,
"episodeCount": 134,
"genres": [
"animation",
"fantasy"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-10/400/600",
"rating": 5.8,
"ratingCount": 309727,
"status": "ended",
"createdAt": "2023-11-18T04:51:38.381Z"
}