Congregatio adeptio creator quo
2004
reality
★ 9.6 (366155)
tv-shows / #26
2004
★ 9.6 (366155)
curl -sS \
"https://example-data.com/api/v1/tv-shows/26" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/26"
);
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/26"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/26"
)
tv_show = res.json() {
"id": 26,
"title": "Congregatio adeptio creator quo",
"slug": "congregatio-adeptio-creator-quo-26",
"firstAired": "2004-08-30",
"lastAired": "2012-02-06",
"seasonCount": 8,
"episodeCount": 2,
"genres": [
"reality"
],
"language": "Japanese",
"posterUrl": "https://picsum.photos/seed/tvshow-26/400/600",
"rating": 9.6,
"ratingCount": 366155,
"status": "ended",
"createdAt": "2024-08-10T16:12:27.877Z"
}