Virgo vicinus exercitationem
1998
fantasyromancemystery
★ 9.7 (224881)
tv-shows / #97
1998
★ 9.7 (224881)
curl -sS \
"https://example-data.com/api/v1/tv-shows/97" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/97"
);
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/97"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/97"
)
tv_show = res.json() {
"id": 97,
"title": "Virgo vicinus exercitationem",
"slug": "virgo-vicinus-exercitationem-97",
"firstAired": "1998-07-09",
"lastAired": "2021-11-21",
"seasonCount": 11,
"episodeCount": 30,
"genres": [
"fantasy",
"romance",
"mystery"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-97/400/600",
"rating": 9.7,
"ratingCount": 224881,
"status": "ended",
"createdAt": "2023-12-25T08:21:26.346Z"
}