Decens adeptio
2015
romancedrama
★ 8.5 (347201)
Overview
tv-shows / #73
2015
★ 8.5 (347201)
Decens adeptio
2015
★ 8.5
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/73" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/73" ); 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/73"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/73"
)
tv_show = res.json() Response
{
"id": 73,
"title": "Decens adeptio",
"slug": "decens-adeptio-73",
"firstAired": "2015-05-31",
"lastAired": "2020-10-31",
"seasonCount": 12,
"episodeCount": 242,
"genres": [
"romance",
"drama"
],
"language": "Portuguese",
"posterUrl": "https://picsum.photos/seed/tvshow-73/400/600",
"rating": 8.5,
"ratingCount": 347201,
"status": "ended",
"createdAt": "2025-07-20T07:35:41.344Z"
}