Congregatio adeptio creator quo
2004
reality
★ 9.6 (366155)
Overview
tv-shows / #26
2004
★ 9.6 (366155)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/26" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/26" ); 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/26"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/26"
)
tv_show = res.json() Response
{
"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"
}