Maxime vacuus volup
2017
fantasy
★ 4.3 (68093)
tv-shows / #100
2017
★ 4.3 (68093)
curl -sS \
"https://example-data.com/api/v1/tv-shows/100" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/100"
);
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/100"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/100"
)
tv_show = res.json() {
"id": 100,
"title": "Maxime vacuus volup",
"slug": "maxime-vacuus-volup-100",
"firstAired": "2017-01-19",
"lastAired": null,
"seasonCount": 3,
"episodeCount": 15,
"genres": [
"fantasy"
],
"language": "French",
"posterUrl": "https://picsum.photos/seed/tvshow-100/400/600",
"rating": 4.3,
"ratingCount": 68093,
"status": "running",
"createdAt": "2023-12-17T09:04:59.123Z"
}