Excepturi video defero accendo verbum
2004
fantasy
★ 8.0 (409364)
tv-shows / #83
2004
★ 8.0 (409364)
curl -sS \
"https://example-data.com/api/v1/tv-shows/83" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/83"
);
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/83"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/83"
)
tv_show = res.json() {
"id": 83,
"title": "Excepturi video defero accendo verbum",
"slug": "excepturi-video-defero-accendo-verbum-83",
"firstAired": "2004-10-27",
"lastAired": null,
"seasonCount": 8,
"episodeCount": 198,
"genres": [
"fantasy"
],
"language": "French",
"posterUrl": "https://picsum.photos/seed/tvshow-83/400/600",
"rating": 8,
"ratingCount": 409364,
"status": "running",
"createdAt": "2025-04-27T19:51:08.943Z"
}