Cribro caries tot optio stips
2008
actioncrimedrama
★ 3.0 (33227)
tv-shows / #37
2008
★ 3.0 (33227)
curl -sS \
"https://example-data.com/api/v1/tv-shows/37" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/tv-shows/37"
);
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/37"
);
const tvShow = (await res.json()) as TvShow;import requests
res = requests.get(
"https://example-data.com/api/v1/tv-shows/37"
)
tv_show = res.json() {
"id": 37,
"title": "Cribro caries tot optio stips",
"slug": "cribro-caries-tot-optio-stips-37",
"firstAired": "2008-07-30",
"lastAired": "2025-03-19",
"seasonCount": 2,
"episodeCount": 14,
"genres": [
"action",
"crime",
"drama"
],
"language": "German",
"posterUrl": "https://picsum.photos/seed/tvshow-37/400/600",
"rating": 3,
"ratingCount": 33227,
"status": "cancelled",
"createdAt": "2024-06-08T08:19:25.981Z"
}