Vinco damnatio adaugeo averto
2015
mysterydrama
★ 6.5 (112125)
tv-shows / #61
2015
★ 6.5 (112125)
curl -sS \
"https://example-data.com/api/v1/tv-shows/61" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/61"
);
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/61"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/61"
)
tv_show = res.json() {
"id": 61,
"title": "Vinco damnatio adaugeo averto",
"slug": "vinco-damnatio-adaugeo-averto-61",
"firstAired": "2015-03-06",
"lastAired": null,
"seasonCount": 3,
"episodeCount": 58,
"genres": [
"mystery",
"drama"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-61/400/600",
"rating": 6.5,
"ratingCount": 112125,
"status": "running",
"createdAt": "2024-12-10T11:01:48.730Z"
}