Dolorum adhuc officia
2019
fantasyromance
★ 9.6 (228122)
tv-shows / #62
2019
★ 9.6 (228122)
curl -sS \
"https://example-data.com/api/v1/tv-shows/62" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/62"
);
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/62"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/62"
)
tv_show = res.json() {
"id": 62,
"title": "Dolorum adhuc officia",
"slug": "dolorum-adhuc-officia-62",
"firstAired": "2019-05-30",
"lastAired": "2026-04-04",
"seasonCount": 9,
"episodeCount": 144,
"genres": [
"fantasy",
"romance"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-62/400/600",
"rating": 9.6,
"ratingCount": 228122,
"status": "ended",
"createdAt": "2023-08-15T12:47:01.525Z"
}