Crapula cursim attero toties admoneo
2013
crimethrillercomedy
★ 9.4 (53404)
tv-shows / #14
2013
★ 9.4 (53404)
curl -sS \
"https://example-data.com/api/v1/tv-shows/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/14"
);
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/14"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/14"
)
tv_show = res.json() {
"id": 14,
"title": "Crapula cursim attero toties admoneo",
"slug": "crapula-cursim-attero-toties-admoneo-14",
"firstAired": "2013-06-21",
"lastAired": "2015-02-02",
"seasonCount": 1,
"episodeCount": 12,
"genres": [
"crime",
"thriller",
"comedy"
],
"language": "French",
"posterUrl": "https://picsum.photos/seed/tvshow-14/400/600",
"rating": 9.4,
"ratingCount": 53404,
"status": "ended",
"createdAt": "2025-04-03T10:31:15.433Z"
}