Conqueror civitas coepi crinis
2019
science-fiction
★ 6.9 (437307)
Overview
tv-shows / #15
2019
★ 6.9 (437307)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/15" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/15" ); const tvShow = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tv-shows.d.ts https://example-data.com/types/tv-shows.d.ts
import type { TvShow } from "./types/tv-shows";
const res = await fetch(
"https://example-data.com/api/v1/tv-shows/15"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/15"
)
tv_show = res.json() Response
{
"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"
}