Paens cohaero suscipit auxilium adfero
2003
mysterycomedyreality
★ 0.8 (42983)
tv-shows / #27
2003
★ 0.8 (42983)
curl -sS \
"https://example-data.com/api/v1/tv-shows/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/27"
);
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/27"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/27"
)
tv_show = res.json() {
"id": 27,
"title": "Paens cohaero suscipit auxilium adfero",
"slug": "paens-cohaero-suscipit-auxilium-adfero-27",
"firstAired": "2003-11-25",
"lastAired": null,
"seasonCount": 10,
"episodeCount": 245,
"genres": [
"mystery",
"comedy",
"reality"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-27/400/600",
"rating": 0.8,
"ratingCount": 42983,
"status": "running",
"createdAt": "2025-12-18T11:28:08.992Z"
}