Cubitum sequi fugiat autem
2009
adventurereality
★ 0.2 (260643)
tv-shows / #48
2009
★ 0.2 (260643)
curl -sS \
"https://example-data.com/api/v1/tv-shows/48" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/48"
);
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/48"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/48"
)
tv_show = res.json() {
"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"
}