Vox via terga alo
2021
action
★ 0.4 (233301)
tv-shows / #45
2021
★ 0.4 (233301)
Vox via terga alo
2021
★ 0.4
curl -sS \
"https://example-data.com/api/v1/tv-shows/45" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/45"
);
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/45"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/45"
)
tv_show = res.json() {
"id": 45,
"title": "Vox via terga alo",
"slug": "vox-via-terga-alo-45",
"firstAired": "2021-07-12",
"lastAired": null,
"seasonCount": 7,
"episodeCount": 10,
"genres": [
"action"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-45/400/600",
"rating": 0.4,
"ratingCount": 233301,
"status": "upcoming",
"createdAt": "2024-07-26T08:16:54.053Z"
}