Acidus adsuesco clementia
2019
science-fictioncrime
★ 3.3 (294565)
tv-shows / #29
2019
★ 3.3 (294565)
curl -sS \
"https://example-data.com/api/v1/tv-shows/29" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/29"
);
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/29"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/29"
)
tv_show = res.json() {
"id": 29,
"title": "Acidus adsuesco clementia",
"slug": "acidus-adsuesco-clementia-29",
"firstAired": "2019-02-17",
"lastAired": "2021-05-06",
"seasonCount": 13,
"episodeCount": 20,
"genres": [
"science-fiction",
"crime"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-29/400/600",
"rating": 3.3,
"ratingCount": 294565,
"status": "ended",
"createdAt": "2026-02-26T04:48:10.241Z"
}