Deputo ustulo dolore
2019
romance
★ 7.4 (474651)
tv-shows / #74
2019
★ 7.4 (474651)
curl -sS \
"https://example-data.com/api/v1/tv-shows/74" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/74"
);
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/74"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/74"
)
tv_show = res.json() {
"id": 74,
"title": "Deputo ustulo dolore",
"slug": "deputo-ustulo-dolore-74",
"firstAired": "2019-06-17",
"lastAired": "2020-03-19",
"seasonCount": 14,
"episodeCount": 291,
"genres": [
"romance"
],
"language": "Mandarin",
"posterUrl": "https://picsum.photos/seed/tvshow-74/400/600",
"rating": 7.4,
"ratingCount": 474651,
"status": "ended",
"createdAt": "2024-08-31T04:11:26.291Z"
}