Cetera eaque
2020
comedy
★ 9.9 (262934)
tv-shows / #2
2020
★ 9.9 (262934)
Cetera eaque
2020
★ 9.9
curl -sS \
"https://example-data.com/api/v1/tv-shows/2" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/2"
);
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/2"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/2"
)
tv_show = res.json() {
"id": 2,
"title": "Cetera eaque",
"slug": "cetera-eaque-2",
"firstAired": "2020-02-23",
"lastAired": null,
"seasonCount": 14,
"episodeCount": 88,
"genres": [
"comedy"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-2/400/600",
"rating": 9.9,
"ratingCount": 262934,
"status": "upcoming",
"createdAt": "2025-11-01T14:46:53.742Z"
}