Audentia audentia deludo umerus
2021
horrormysterydrama
★ 3.4 (284969)
tv-shows / #60
2021
★ 3.4 (284969)
curl -sS \
"https://example-data.com/api/v1/tv-shows/60" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/60"
);
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/60"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/60"
)
tv_show = res.json() {
"id": 60,
"title": "Audentia audentia deludo umerus",
"slug": "audentia-audentia-deludo-umerus-60",
"firstAired": "2021-04-03",
"lastAired": null,
"seasonCount": 7,
"episodeCount": 31,
"genres": [
"horror",
"mystery",
"drama"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-60/400/600",
"rating": 3.4,
"ratingCount": 284969,
"status": "upcoming",
"createdAt": "2025-03-08T14:05:39.964Z"
}