Volo apostolus sollers demergo
2012
romancefantasyreality
★ 0.5 (486326)
tv-shows / #30
2012
★ 0.5 (486326)
curl -sS \
"https://example-data.com/api/v1/tv-shows/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/30"
);
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/30"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/30"
)
tv_show = res.json() {
"id": 30,
"title": "Volo apostolus sollers demergo",
"slug": "volo-apostolus-sollers-demergo-30",
"firstAired": "2012-11-22",
"lastAired": "2016-04-28",
"seasonCount": 7,
"episodeCount": 72,
"genres": [
"romance",
"fantasy",
"reality"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-30/400/600",
"rating": 0.5,
"ratingCount": 486326,
"status": "ended",
"createdAt": "2023-11-15T22:12:47.573Z"
}