Conqueror civitas coepi crinis
2019
science-fiction
★ 6.9 (437307)
tv-shows / #15
2019
★ 6.9 (437307)
curl -sS \
"https://example-data.com/api/v1/tv-shows/15" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/15"
);
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/15"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/15"
)
tv_show = res.json() {
"id": 15,
"title": "Conqueror civitas coepi crinis",
"slug": "conqueror-civitas-coepi-crinis-15",
"firstAired": "2019-08-29",
"lastAired": "2019-11-04",
"seasonCount": 1,
"episodeCount": 21,
"genres": [
"science-fiction"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-15/400/600",
"rating": 6.9,
"ratingCount": 437307,
"status": "ended",
"createdAt": "2025-11-24T00:46:21.606Z"
}