Cubitum sequi fugiat autem
2009
adventurereality
★ 0.2 (260643)
Overview
tv-shows / #48
2009
★ 0.2 (260643)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tv-shows/48" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tv-shows/48" ); 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/48"
);
const tvShow = (await res.json()) as TvShow; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/48"
)
tv_show = res.json() Response
{
"id": 48,
"title": "Cubitum sequi fugiat autem",
"slug": "cubitum-sequi-fugiat-autem-48",
"firstAired": "2009-07-16",
"lastAired": "2015-12-07",
"seasonCount": 6,
"episodeCount": 120,
"genres": [
"adventure",
"reality"
],
"language": "Spanish",
"posterUrl": "https://picsum.photos/seed/tvshow-48/400/600",
"rating": 0.2,
"ratingCount": 260643,
"status": "cancelled",
"createdAt": "2025-11-23T16:50:59.587Z"
}