Considero adeptio vinco atqui tenus
2020
thrillermystery
★ 2.6 (350765)
tv-shows / #8
2020
★ 2.6 (350765)
curl -sS \
"https://example-data.com/api/v1/tv-shows/8" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/8"
);
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/8"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/8"
)
tv_show = res.json() {
"id": 8,
"title": "Considero adeptio vinco atqui tenus",
"slug": "considero-adeptio-vinco-atqui-tenus-8",
"firstAired": "2020-06-08",
"lastAired": "2023-03-01",
"seasonCount": 8,
"episodeCount": 162,
"genres": [
"thriller",
"mystery"
],
"language": "Korean",
"posterUrl": "https://picsum.photos/seed/tvshow-8/400/600",
"rating": 2.6,
"ratingCount": 350765,
"status": "ended",
"createdAt": "2026-01-15T21:23:44.653Z"
}