Bellicus somnus auxilium
2020
thriller
★ 1.3 (185718)
tv-shows / #31
2020
★ 1.3 (185718)
curl -sS \
"https://example-data.com/api/v1/tv-shows/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/31"
);
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/31"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/31"
)
tv_show = res.json() {
"id": 31,
"title": "Bellicus somnus auxilium",
"slug": "bellicus-somnus-auxilium-31",
"firstAired": "2020-09-18",
"lastAired": "2021-11-02",
"seasonCount": 3,
"episodeCount": 41,
"genres": [
"thriller"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-31/400/600",
"rating": 1.3,
"ratingCount": 185718,
"status": "cancelled",
"createdAt": "2025-01-10T20:14:44.934Z"
}