Stillicidium terreo viscus ducimus
2013
thrillercrimecomedy
★ 3.3 (286197)
tv-shows / #13
2013
★ 3.3 (286197)
curl -sS \
"https://example-data.com/api/v1/tv-shows/13" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/13"
);
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/13"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/13"
)
tv_show = res.json() {
"id": 13,
"title": "Stillicidium terreo viscus ducimus",
"slug": "stillicidium-terreo-viscus-ducimus-13",
"firstAired": "2013-03-18",
"lastAired": null,
"seasonCount": 5,
"episodeCount": 96,
"genres": [
"thriller",
"crime",
"comedy"
],
"language": "English",
"posterUrl": "https://picsum.photos/seed/tvshow-13/400/600",
"rating": 3.3,
"ratingCount": 286197,
"status": "running",
"createdAt": "2023-06-14T08:06:10.259Z"
}